System.Data.Common.DbDataReader.Dispose Method

Releases all resources used by the current instance of the System.Data.Common.DbDataReader class.

Syntax

[System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
public void Dispose ()

Remarks

Call Dispose when you are finished using the System.Data.Common.DbDataReader. The Dispose method leaves the System.Data.Common.DbDataReader in an unusable state. After calling Dispose, you must release all references to the System.Data.Common.DbDataReader so the garbage collector can reclaim the memory that the System.Data.Common.DbDataReader was occupying.

For more information, see Cleaning Up Unmanaged Resources and Implementing a Dispose Method.

Note:

Always call Dispose before you release your last reference to the System.Data.Common.DbDataReader. Otherwise, the resources it is using will not be freed until the garbage collector calls the System.Data.Common.DbDataReader object's Finalize method.

Requirements

Namespace: System.Data.Common
Assembly: System.Data (in System.Data.dll)
Assembly Versions: 2.0.0.0
Since: .NET 2.0