mirror of
https://github.com/ViViDboarder/subsonic-csharp.git
synced 2024-11-15 02:16:29 +00:00
50 lines
871 B
C#
50 lines
871 B
C#
|
|
using System;
|
|
using System.Collections;
|
|
using System.ComponentModel;
|
|
using System.Web;
|
|
using System.Web.SessionState;
|
|
|
|
namespace SubsonicWeb
|
|
{
|
|
|
|
|
|
public class Global : System.Web.HttpApplication
|
|
{
|
|
|
|
protected virtual void Application_Start (Object sender, EventArgs e)
|
|
{
|
|
}
|
|
|
|
protected virtual void Session_Start (Object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
|
|
protected virtual void Application_BeginRequest (Object sender, EventArgs e)
|
|
{
|
|
}
|
|
|
|
protected virtual void Application_EndRequest (Object sender, EventArgs e)
|
|
{
|
|
}
|
|
|
|
protected virtual void Application_AuthenticateRequest (Object sender, EventArgs e)
|
|
{
|
|
}
|
|
|
|
protected virtual void Application_Error (Object sender, EventArgs e)
|
|
{
|
|
}
|
|
|
|
protected virtual void Session_End (Object sender, EventArgs e)
|
|
{
|
|
}
|
|
|
|
protected virtual void Application_End (Object sender, EventArgs e)
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|