using System;
using System.Web;
using CMS.SettingsProvider;
///
/// Global CMS request events
///
public class CMSRequestEvents
{
///
/// Fires upon the begin request
///
public static CMSHandler Begin = new CMSHandler();
///
/// Fires upon the end request
///
public static CMSHandler End = new CMSHandler();
///
/// Fires upon the request authentication
///
public static CMSHandler Authenticate = new CMSHandler();
///
/// Fires upon the request authorization
///
public static CMSHandler Authorize = new CMSHandler();
///
/// Fires upon the request handler mapping
///
public static CMSHandler MapRequestHandler = new CMSHandler();
///
/// Fires upon the acquiring request state
///
public static CMSHandler AcquireRequestState = new CMSHandler();
}