NSObject.Dispose Method

Definition

Overloads

Dispose()

Releases the resources used by the NSObject object.

Dispose(Boolean)

Releases the resources used by the NSObject object.

Dispose()

Releases the resources used by the NSObject object.

public void Dispose ();
abstract member Dispose : unit -> unit
override this.Dispose : unit -> unit

Implements

Remarks

The Dispose method releases the resources used by the NSObject class.

Calling the Dispose method when the application is finished using the NSObject ensures that all external resources used by this managed object are released as soon as possible. Once developers have invoked the Dispose method, the object is no longer useful and developers should no longer make any calls to it. For more information on releasing resources see ``Cleaning up Unmananaged Resources'' at https://msdn.microsoft.com/en-us/library/498928w2.aspx

Applies to

Dispose(Boolean)

Releases the resources used by the NSObject object.

protected virtual void Dispose (bool disposing);
abstract member Dispose : bool -> unit
override this.Dispose : bool -> unit

Parameters

disposing
Boolean

If set to true, the method is invoked directly and will dispose manage and unmanaged resources; If set to false the method is being called by the garbage collector finalizer and should only release unmanaged resources.

Remarks

This Dispose method releases the resources used by the NSObject class.

This method is called by both the Dispose() method and the object finalizer (Finalize). When invoked by the Dispose method, the parameter disposing disposing is set to true and any managed object references that this object holds are also disposed or released; when invoked by the object finalizer, on the finalizer thread the value is set to false.

Calling the Dispose method when the application is finished using the NSObject ensures that all external resources used by this managed object are released as soon as possible. Once developers have invoked the Dispose method, the object is no longer useful and developers should no longer make any calls to it.

For more information on how to override this method and on the Dispose/IDisposable pattern, read the ``Implementing a Dispose Method'' document at https://msdn.microsoft.com/en-us/library/fs2xkftw.aspx

Applies to