Global Constructor | Initializes a new instance of the Global class. |
Application (inherited from HttpApplication) | Gets the current state of an application. |
Context (inherited from HttpApplication) | Gets HTTP-specific information about the current request. |
Modules (inherited from HttpApplication) | Gets the collection of modules for the current application. |
Request (inherited from HttpApplication) | Gets the intrinsic request object for the current request. |
Response (inherited from HttpApplication) | Gets the intrinsic response object for the current request. |
Server (inherited from HttpApplication) | Gets the intrinsic server object for the current request. |
Session (inherited from HttpApplication) | Gets the intrinsic session object that provides access to session data. |
Site (inherited from HttpApplication) | Provides a site interface for an IComponent implementation. |
User (inherited from HttpApplication) | Gets the intrinsic user object for the current request. |
AddOnAcquireRequestStateAsync (inherited from HttpApplication) | Overloaded. Adds the specified AcquireRequestState event to the collection of asynchronous AcquireRequestState event handlers for the current request. |
AddOnAuthenticateRequestAsync (inherited from HttpApplication) | Overloaded. Adds the specified AuthenticateRequest event to the collection of asynchronous AuthenticateRequest event handlers for the current request. |
AddOnAuthorizeRequestAsync (inherited from HttpApplication) | Overloaded. Adds the specified AuthorizeRequest event to the collection of asynchronous AuthorizeRequest event handlers for the current request. |
AddOnBeginRequestAsync (inherited from HttpApplication) | Overloaded. Adds the specified BeginRequest event to the collection of asynchronous BeginRequest event handlers for the current request. |
AddOnEndRequestAsync (inherited from HttpApplication) | Overloaded. Adds the specified EndRequest event to the collection of asynchronous EndRequest event handlers for the current request. |
AddOnLogRequestAsync (inherited from HttpApplication) | Overloaded. |
AddOnMapRequestHandlerAsync (inherited from HttpApplication) | Overloaded. |
AddOnPostAcquireRequestStateAsync (inherited from HttpApplication) | Overloaded. Adds the specified PostAcquireRequestState event to the collection of asynchronous PostAcquireRequestState event handlers for the current request. |
AddOnPostAuthenticateRequestAsync (inherited from HttpApplication) | Overloaded. Adds the specified PostAuthenticateRequest event to the collection of asynchronous PostAuthenticateRequest event handlers for the current request. |
AddOnPostAuthorizeRequestAsync (inherited from HttpApplication) | Overloaded. Adds the specified PostAuthorizeRequest event to the collection of asynchronous PostAuthorizeRequest event handlers for the current request. |
AddOnPostLogRequestAsync (inherited from HttpApplication) | Overloaded. |
AddOnPostMapRequestHandlerAsync (inherited from HttpApplication) | Overloaded. Adds the specified PostMapRequestHandler event to the collection of asynchronous PostMapRequestHandler event handlers for the current request. |
AddOnPostReleaseRequestStateAsync (inherited from HttpApplication) | Overloaded. Adds the specified PostReleaseRequestState event to the collection of asynchronous PostReleaseRequestState event handlers for the current request. |
AddOnPostRequestHandlerExecuteAsync (inherited from HttpApplication) | Overloaded. Adds the specified PostRequestHandlerExecute event to the collection of asynchronous PostRequestHandlerExecute event handlers for the current request. |
AddOnPostResolveRequestCacheAsync (inherited from HttpApplication) | Overloaded. Adds the specified PostResolveRequestCache event to the collection of asynchronous PostResolveRequestCache event handlers for the current request. |
AddOnPostUpdateRequestCacheAsync (inherited from HttpApplication) | Overloaded. Adds the specified PostUpdateRequestCache event to the collection of asynchronous PostUpdateRequestCache event handlers for the current request. |
AddOnPreRequestHandlerExecuteAsync (inherited from HttpApplication) | Overloaded. Adds the specified PreRequestHandlerExecute event to the collection of asynchronous PreRequestHandlerExecute event handlers for the current request. |
AddOnReleaseRequestStateAsync (inherited from HttpApplication) | Overloaded. Adds the specified ReleaseRequestState event to the collection of asynchronous ReleaseRequestState event handlers for the current request. |
AddOnResolveRequestCacheAsync (inherited from HttpApplication) | Overloaded. Adds the specified ResolveRequestCache event handler to the collection of asynchronous ResolveRequestCache event handlers for the current request. |
AddOnUpdateRequestCacheAsync (inherited from HttpApplication) | Overloaded. Adds the specified UpdateRequestCache event to the collection of asynchronous UpdateRequestCache event handlers for the current request. |
CompleteRequest (inherited from HttpApplication) | Causes ASP.NET to bypass all events and filtering in the HTTP pipeline chain of execution and directly execute the EndRequest event. |
Dispose (inherited from HttpApplication) | Disposes the HttpApplication instance. |
Equals (inherited from Object) | Determines whether the specified Object is equal to the current Object. |
GetHashCode (inherited from Object) | Serves as a hash function for a particular type. GetHashCode is suitable for use in hashing algorithms and data structures like a hash table. |
GetType (inherited from Object) | Gets the Type of the current instance. |
GetVaryByCustomString | |
GetVaryByCustomStringHelper | |
Init (inherited from HttpApplication) | Executes custom initialization code after all event handler modules have been added. |
ToString (inherited from Object) | Returns a String that represents the current Object. |
AcquireRequestState (inherited from HttpApplication) | Occurs when ASP.NET acquires the current state (for example, session state) that is associated with the current request. |
AuthenticateRequest (inherited from HttpApplication) | Occurs when a security module has established the identity of the user. |
AuthorizeRequest (inherited from HttpApplication) | Occurs when a security module has verified user authorization. |
BeginRequest (inherited from HttpApplication) | Occurs as the first event in the HTTP pipeline chain of execution when ASP.NET responds to a request. |
Disposed (inherited from HttpApplication) | Adds an event handler to listen to the Disposed event on the application. |
EndRequest (inherited from HttpApplication) | Occurs as the last event in the HTTP pipeline chain of execution when ASP.NET responds to a request. |
Error (inherited from HttpApplication) | Occurs when an unhandled exception is thrown. |
LogRequest (inherited from HttpApplication) | |
MapRequestHandler (inherited from HttpApplication) | |
PostAcquireRequestState (inherited from HttpApplication) | Occurs when the request state (for example, session state) that is associated with the current request has been obtained. |
PostAuthenticateRequest (inherited from HttpApplication) | Occurs when a security module has established the identity of the user. |
PostAuthorizeRequest (inherited from HttpApplication) | Occurs when the user for the current request has been authorized. |
PostLogRequest (inherited from HttpApplication) | |
PostMapRequestHandler (inherited from HttpApplication) | Occurs when ASP.NET has mapped the current request to the appropriate event handler. |
PostReleaseRequestState (inherited from HttpApplication) | Occurs when ASP.NET has completed executing all request event handlers and the request state data has been stored. |
PostRequestHandlerExecute (inherited from HttpApplication) | Occurs when the ASP.NET event handler (for example, a page or an XML Web service) finishes execution. |
PostResolveRequestCache (inherited from HttpApplication) | Occurs when ASP.NET bypasses execution of the current event handler and allows a caching module to serve a request from the cache. |
PostUpdateRequestCache (inherited from HttpApplication) | Occurs when ASP.NET completes updating caching modules and storing responses that are used to serve subsequent requests from the cache. |
PreRequestHandlerExecute (inherited from HttpApplication) | Occurs just before ASP.NET begins executing an event handler (for example, a page or an XML Web service). |
PreSendRequestContent (inherited from HttpApplication) | Occurs just before ASP.NET sends content to the client. |
PreSendRequestHeaders (inherited from HttpApplication) | Occurs just before ASP.NET sends HTTP headers to the client. |
ReleaseRequestState (inherited from HttpApplication) | Occurs after ASP.NET finishes executing all request event handlers. This event causes state modules to save the current state data. |
ResolveRequestCache (inherited from HttpApplication) | Occurs when ASP.NET completes an authorization event to let the caching modules serve requests from the cache, bypassing execution of the event handler (for example, a page or an XML Web service). |
UpdateRequestCache (inherited from HttpApplication) | Occurs when ASP.NET finishes executing an event handler in order to let caching modules store responses that will be used to serve subsequent requests from the cache. |
Events (inherited from HttpApplication) | Gets the list of event handler delegates that process all application events. |
Application_AuthenticateRequest | |
Application_BeginRequest | |
Application_End | |
Application_Error | |
Application_Start | |
Finalize (inherited from Object) | Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection. |
Global_BeginRequest_KB887459 | Implements a Microsoft-suggested workaround for the "URL Canonicalization" vulnerability in ASP.NET. |
MemberwiseClone (inherited from Object) | Creates a shallow copy of the current Object. |
Session_End | |
Session_Start |
IHttpAsyncHandler.BeginProcessRequest (inherited from HttpApplication) | |
IHttpAsyncHandler.EndProcessRequest (inherited from HttpApplication) | |
IHttpHandler.ProcessRequest (inherited from HttpApplication) |