WindowPane.Dispose Method

Disposes the window pane and its resources.

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

Syntax

'Declaration
Public Sub Dispose
public void Dispose()
public:
virtual void Dispose() sealed
abstract Dispose : unit -> unit  
override Dispose : unit -> unit
public final function Dispose()

Implements

IDisposable.Dispose()

Remarks

Call Dispose when you are finished using the WindowPane. The Dispose method leaves the WindowPane in an unusable state. After you call Dispose, you must release all references to the WindowPane so that the garbage collector can reclaim the memory that the WindowPane was occupying. For more information, see Cleaning Up Unmanaged Resources and Implementing a Dispose Method.

Note

Always call Dispose before you release the last reference to the WindowPane. Otherwise, the resources it is using may not be freed until the garbage collector calls the Finalize method of the WindowPane object.

.NET Framework Security

See Also

Reference

WindowPane Class

Dispose Overload

Microsoft.VisualStudio.Shell Namespace