TemplateEditingVerb.Dispose Method (Boolean)
.NET Framework 3.0
Releases the unmanaged resources used by the TemplateEditingVerb and optionally releases the managed resources.
Namespace: System.Web.UI.Design
Assembly: System.Design (in system.design.dll)
Dispose can be called multiple times by other objects. When overriding Dispose(Boolean), be careful not to reference objects that have been previously disposed of in an earlier call to Dispose. For more information about how to implement Dispose(Boolean), see Implementing a Dispose Method.
For more information about Dispose and Finalize, see Cleaning Up Unmanaged Resources and Overriding the Finalize Method.
Assembly: System.Design (in system.design.dll)
This method is called by the public Dispose method and the Finalize method. Dispose invokes the protected Dispose(Boolean) method with disposing set to true. Finalize invokes Dispose with disposing set to false.
When disposing is true, this method releases all resources held by any managed objects that this TemplateEditingVerb references. This method invokes the Dispose method of each referenced object.
Notes to Inheritors: Note: |
|---|
| The TemplateEditingVerb class is obsolete. Expose templates through the TemplateGroups property of a control designer. The design host creates a TemplatedEditableDesignerRegion for each TemplateGroup defined for a control designer. |
Community Additions
ADD
Show:
Note: