XmlDesigner::Dispose Method (Boolean)
Releases the unmanaged resources that are used by the XmlDesigner control and optionally releases the managed resources.
Assembly: System.Design (in System.Design.dll)
Parameters
- disposing
- Type: System::Boolean
true to release both managed and unmanaged resources; false to release only unmanaged resources.
Call Dispose when you are finished using the XmlDesigner class. The Dispose method leaves the XmlDesigner in an unusable state. After calling Dispose, you must release all references to the XmlDesigner so the garbage collector can reclaim the memory that the XmlDesigner 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 XmlDesigner. Otherwise, the resources it is using will not be freed until the garbage collector calls the XmlDesigner object's Finalize method. |
The Dispose method is called by the public Dispose() method and the Finalize method. The Dispose() invokes the protected Dispose(Boolean) method with disposing set to true. The Finalize invokes Dispose with disposing set to false.
When disposing is true, the Dispose method releases all resources that are held by any managed objects that this XmlDesigner references. The Dispose method invokes the Dispose() method of each referenced object.
Notes to Inheritors:When overriding Dispose(Boolean), because the Dispose method can be called multiple times by other objects, be careful not to reference objects that have been previously disposed of in an earlier call to the Dispose method. For more information about how to implement Dispose(Boolean), see Implementing a Dispose Method
- 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.
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note: