using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.SessionState;
using System.Threading;
using System.IO;
using iReaper.Source;
namespace iReaper{
public class Global : System.Web.HttpApplication
{
protected void Application_Start(object sender, EventArgs e)
{
ThreadStart[] entries = new ThreadStart[]{
TimerManager.Init,
OriginalContentManager.Init,
DownloadUrlManager.Init,
GeoInfoManager.Init,
DataManager.Init,
IndexBuilder.Init,
LogManager.Init};
for (int i = 0; i < entries.Length; i++)
{
try
{
entries[i]();
}
catch { }
}
}
protected void Session_Start(object sender, EventArgs e)
{
}
protected void Application_BeginRequest(object sender, EventArgs e)
{
}
protected void Application_AuthenticateRequest(object sender, EventArgs e)
{
}
protected void Application_Error(object sender, EventArgs e)
{
}
protected void Session_End(object sender, EventArgs e)
{
}
protected void Application_End(object sender, EventArgs e)
{
}
}
}
|