Fired when the ASP.NET page framework completes handler execution to allow caching modules to store responses to be used to handle subsequent requests. Fired when the ASP.NET page framework is finished executing an event handler.

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

Syntax

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

Parameters

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

See Also