Class GlobalAsaxHandler
- Namespace
- Dynamicweb.Frontend
- Assembly
- Dynamicweb.dll
Handles Dynamicweb specific global.asax events.
note
https://msdn.microsoft.com/en-us/library/bb470252.aspx explains the events we use, and in which order they execute
[Obsolete("Do not use")]
public sealed class GlobalAsaxHandler
- Inheritance
-
GlobalAsaxHandler
- Inherited Members
Methods
Application_AuthenticateRequest(object, EventArgs)
Handles the AuthenticateRequest event of the Application control.
public static void Application_AuthenticateRequest(object sender, EventArgs e)
Parameters
sender
object- The source of the event.
e
EventArgs- The EventArgs instance containing the event data.
Application_BeginRequest(object, EventArgs)
Handles the BeginRequest event of the Application control.
public static void Application_BeginRequest(object sender, EventArgs e)
Parameters
sender
object- The source of the event.
e
EventArgs- The EventArgs instance containing the event data.
Application_End(object, EventArgs)
Handles the End event of the Application control.
public static void Application_End(object sender, EventArgs e)
Parameters
sender
object- The source of the event.
e
EventArgs- The EventArgs instance containing the event data.
Application_EndRequest(object, EventArgs)
public static void Application_EndRequest(object sender, EventArgs e)
Parameters
Application_Error(object, EventArgs)
Handles the Error event of the Application control.
public static void Application_Error(object sender, EventArgs e)
Parameters
sender
object- The source of the event.
e
EventArgs- The EventArgs instance containing the event data.
Application_OnPreRequestHandlerExecute(object, EventArgs)
Handles the OnPreRequestHandlerExecute event of the Application control.
public static void Application_OnPreRequestHandlerExecute(object sender, EventArgs e)
Parameters
sender
object- The source of the event.
e
EventArgs- The EventArgs instance containing the event data.
Application_Start(object, EventArgs)
Handles the Start event of the Application control.
public static void Application_Start(object sender, EventArgs e)
Parameters
sender
object- The source of the event.
e
EventArgs- The EventArgs instance containing the event data.
Session_End(object, EventArgs)
Handles the End event of the Session control.
public static void Session_End(object sender, EventArgs e)
Parameters
sender
object- The source of the event.
e
EventArgs- The EventArgs instance containing the event data.
Session_Start(object, EventArgs)
Handles the Start event of the Session control.
public static void Session_Start(object sender, EventArgs e)