HttpApplication.PostAcquireRequestState Event

Definition

Occurs when the request state (for example, session state) that is associated with the current request has been obtained.

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

Event Type

Remarks

The PostAcquireRequestState event is raised after the AcquireRequestState event has occurred. Functionality that subscribes to the AcquireRequestState event can access any data that is processed by the PostAcquireRequestState.

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

Applies to

See also