HttpApplication.AuthorizeRequest Event

Definition

Occurs when a security module has verified user authorization.

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

Event Type

Remarks

The AuthorizeRequest event signals that ASP.NET has authorized the current request. Subscribing to the AuthorizeRequest event ensures that the request will be authenticated and authorized 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