Fired when the ASP.NET page framework completes an authorization request. It allows caching modules to serve the request from the cache, thus bypassing handler execution.

Namespace: MonoSoftware.MonoX
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
protected virtual void Application_ResolveRequestCache(
	Object sender,
	EventArgs e
)
Visual Basic
Protected Overridable Sub Application_ResolveRequestCache ( 
	sender As Object,
	e As EventArgs
)
Visual C++
protected:
virtual void Application_ResolveRequestCache(
	Object^ sender, 
	EventArgs^ e
)
F#
abstract Application_ResolveRequestCache : 
        sender : Object * 
        e : EventArgs -> unit 
override Application_ResolveRequestCache : 
        sender : Object * 
        e : EventArgs -> unit 

Parameters

sender
Type: System..::..Object
Sender.
e
Type: System..::..EventArgs
Event arguments.

See Also