ExternalSettingsManager.Dispose Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Releases the resources that are used by the current instance of the ExternalSettingsManager class.
public:
override void Dispose();
public:
override sealed void Dispose();
override sealed void Dispose();
public override sealed void Dispose ();
abstract member Dispose : unit -> unit
override this.Dispose : unit -> unit
Public Overrides NotOverridable Sub Dispose ()
Implements
Remarks
When you are finished using a ExternalSettingsManager instance, call Dispose
. The Dispose
method leaves the ExternalSettingsManager instance in an unusable state. After you call Dispose
, you must release all references to the ExternalSettingsManager instance so that the garbage collector can reclaim the memory that the instance 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 ExternalSettingsManager instance. Otherwise, the resources it is using will not be freed until the garbage collector calls the Finalize
method of the ExternalSettingsManager instance.