INotifyObjectDisposed.Disposed Event

Definition

Occurs when an object is disposed.

public:
 event EventHandler ^ Disposed;
event EventHandler Disposed;
member this.Disposed : EventHandler 
Event Disposed As EventHandler 

Event Type

Remarks

After an object is disposed, any call to its properties or methods will throw an ObjectDisposedException error. This event can be used to remove a reference to the object that was just disposed.

Accessing any object member in this event will throw the ObjectDisposedException.

If you need to unsubscribe from events or access any other object member, consider using the Disposing event if it is available.

Applies to