HttpApplication.AuthenticateRequest Event

Definition

Occurs when a security module has established the identity of the user.

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

Event Type

Remarks

The AuthenticateRequest event signals that the configured authentication mechanism has authenticated the current request. Subscribing to the AuthenticateRequest event ensures that the request will be authenticated before processing the attached module or event handler.

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

Applies to

See also