DataReader.Terminate Method
Terminates the data reader immediately, without necessarily returning all of the data or setting output parameters.
Namespace: Microsoft.VisualStudio.Data.Framework
Assembly: Microsoft.VisualStudio.Data.Framework (in Microsoft.VisualStudio.Data.Framework.dll)
Syntax
'宣言
Public Overridable Sub Terminate
'使用
Dim instance As DataReader
instance.Terminate()
public virtual void Terminate()
public:
virtual void Terminate()
public function Terminate()
Implements
Remarks
Call the Terminate method when the client no longer wants to read data from the reader and wants to close immediately. This method differs from the Close method, in that it does not wait for the data source to finish returning all the data and abruptly terminates midstream. A byproduct of calling the Terminate method is that any output parameters are not guaranteed to be set.
Permissions
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.