XmlDesigner.Dispose Method (Boolean)
Assembly: System.Design (in system.design.dll)
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 Overriding the Finalize MethodWindows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Reference
XmlDesigner ClassXmlDesigner Members
System.Web.UI.Design.WebControls Namespace
Other Resources
ASP.NET Control Designers OverviewWalkthrough: Creating a Basic Control Designer for a Web Server Control
ASP.NET Control Designers Overview
Walkthrough: Creating a Basic Control Designer for a Web Server Control
Note