ExternalSettingsManager.Dispose Method

Definition

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.

Applies to