System.Web Namespace HttpApplication Class
Occurs when ASP.NET completes an authorization event to let the caching modules serve requests from the cache, bypassing execution of the handler ( the page or XML Web service, for example ).
[ VB ]
Public Event ResolveRequestCache As EventHandler
[ C# ]
public event EventHandler ResolveRequestCache;
[ C++ ]
public: __event EventHandler* ResolveRequestCache;
In [ JScript ], you can handle the events defined by a class, but you cannot define your own.
The event handler receives an argument of type EventArgs containing data related to this event.
HttpApplication Members