HttpApplication::Disposed Event
.NET Framework (current version)
Occurs when the application is disposed.
Assembly: System.Web (in System.Web.dll)
public: event EventHandler^ Disposed { virtual void add(EventHandler^ value) sealed; virtual void remove(EventHandler^ value) sealed; }
Implements
IComponent::DisposedWhen you create a Disposed delegate, you identify the method that handles the event. To associate the event with your event handler, add an instance of the Disposed delegate to the event. The event handler is called whenever the event occurs, unless you remove the Disposed delegate.
For more information about how to handle events, see NIB: Consuming Events.
.NET Framework
Available since 1.1
Available since 1.1
Show: