HttpApplication.AcquireRequestState Event

Definition

Occurs when ASP.NET acquires the current state (for example, session state) that is associated with the current request.

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

Event Type

Examples

For an example of handling the AcquireRequestState event, see the HttpApplication overview topic.

Remarks

The AcquireRequestState event is raised after the event handler has been created.

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

Applies to

See also