Share via


DocData.IDisposable.Dispose Method

Releases all resources used by the current instance of the DocData class.

Namespace:  Microsoft.VisualStudio.Modeling.Shell
Assembly:  Microsoft.VisualStudio.Modeling.Sdk.Shell.11.0 (in Microsoft.VisualStudio.Modeling.Sdk.Shell.11.0.dll)

Syntax

'Declaration
Private Sub Dispose Implements IDisposable.Dispose
void IDisposable.Dispose()
private:
virtual void Dispose() sealed = IDisposable::Dispose
private abstract Dispose : unit -> unit  
private override Dispose : unit -> unit
JScript does not support explicit interface implementations.

Implements

IDisposable.Dispose

Remarks

Call Dispose when you are finished using the DocData. The Dispose method leaves the DocData in an unusable state. After calling Dispose, you must release all references to the DocData so the garbage collector can reclaim the memory that the DocData 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 DocData. Otherwise, the resources it is using will not be freed until the garbage collector calls the DocData object's Finalize method.

.NET Framework Security

See Also

Reference

DocData Class

Microsoft.VisualStudio.Modeling.Shell Namespace