Exemple #1
0
    /// <summary>
    /// Application start event handler.
    /// </summary>
    public void Application_Start(object sender, EventArgs e)
    {
        // Azure Application start init
        AzureInit.Current.ApplicationStartInit();

        CMSAppBase.CMSApplicationStart();
    }
Exemple #2
0
 /// <summary>
 /// Session end event handler.
 /// </summary>
 public void Session_End(object sender, EventArgs e)
 {
     CMSAppBase.CMSSessionEnd(sender, e);
 }
Exemple #3
0
 /// <summary>
 /// Session start event handler.
 /// </summary>
 public void Session_Start(object sender, EventArgs e)
 {
     CMSAppBase.CMSSessionStart(sender, e);
 }
Exemple #4
0
 /// <summary>
 /// Application end event handler.
 /// </summary>
 public void Application_End(object sender, EventArgs e)
 {
     CMSAppBase.CMSApplicationEnd(sender, e);
 }
Exemple #5
0
 /// <summary>
 /// Custom cache parameters processing.
 /// </summary>
 public override string GetVaryByCustomString(HttpContext context, string custom)
 {
     return(CMSAppBase.CMSGetVaryByCustomString(context, custom));
 }