INotifyObjectDisposed.Disposed Event
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.
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.