Fired when an application initializes or is first called. It's invoked for all HttpApplication object instances.

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

Syntax

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

Parameters

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

See Also