HttpApplication.ReleaseRequestState Event

Definition

Occurs after ASP.NET finishes executing all request event handlers. This event causes state modules to save the current state data.

public:
 event EventHandler ^ ReleaseRequestState;
public event EventHandler ReleaseRequestState;
member this.ReleaseRequestState : EventHandler 
Public Custom Event ReleaseRequestState As EventHandler 

Event Type

Remarks

When the ReleaseRequestState event is raised, the application is finished with the request and ASP.NET is signaled to store the request state.

For more information about how to handle events, see Handling and Raising Events.

Applies to

See also