Fired when the ASP.NET page framework completes execution of all event handlers. This results in all state modules to save their current state data.

Namespace: MonoSoftware.MonoX
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
protected virtual void Application_ReleaseRequestState(
	Object sender,
	EventArgs e
)
Visual Basic
Protected Overridable Sub Application_ReleaseRequestState ( 
	sender As Object,
	e As EventArgs
)
Visual C++
protected:
virtual void Application_ReleaseRequestState(
	Object^ sender, 
	EventArgs^ e
)
F#
abstract Application_ReleaseRequestState : 
        sender : Object * 
        e : EventArgs -> unit 
override Application_ReleaseRequestState : 
        sender : Object * 
        e : EventArgs -> unit 

Parameters

sender
Type: System..::..Object
Sender.
e
Type: System..::..EventArgs
Event arguments.

See Also