Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Explicitly called to release resources.
Namespace: Microsoft.VisualStudio.Shell
Assemblies: Microsoft.VisualStudio.Shell.9.0 (in Microsoft.VisualStudio.Shell.9.0.dll)
Microsoft.VisualStudio.Shell.10.0 (in Microsoft.VisualStudio.Shell.10.0.dll)
Microsoft.VisualStudio.Shell (in Microsoft.VisualStudio.Shell.dll)
Syntax
'Declaration
Protected Overrides Sub Dispose ( _
disposing As Boolean _
)
'Usage
Dim disposing As Boolean
Me.Dispose(disposing)
protected override void Dispose(
bool disposing
)
protected:
virtual void Dispose(
bool disposing
) override
abstract Dispose :
disposing:bool -> unit
override Dispose :
disposing:bool -> unit
protected override function Dispose(
disposing : boolean
)
Parameters
- disposing
Type: System.Boolean
true to release both managed and unmanaged resources; false to release only unmanaged resources.
Remarks
Call Dispose() when you are finished using the DialogContainerWithToolbar. The Dispose() method leaves the DialogContainerWithToolbar in an unusable state. After you call Dispose(), you must release all references to the DialogContainerWithToolbar so that the garbage collector can reclaim the memory that the DialogContainerWithToolbar was occupying. For more information, see Cleaning Up Unmanaged Resources and Implementing a Dispose Method.
Hinweis
Always call Dispose() before you release your last reference to the DialogContainerWithToolbar. Otherwise, the resources it is using will not be freed until the garbage collector calls the DialogContainerWithToolbar object's Finalize method.
.NET Framework Security
- 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.
See Also
Reference
DialogContainerWithToolbar Class