private void OnPreProcessRequest(object sender, EventArgs e)
 {
     if (_httpApplicationEvents != null)
     {
         _httpApplicationEvents.OnPreProcessRequest(sender, e);
     }
 }
Exemple #2
0
 public void OnPreProcessRequest(object sender, EventArgs eventArgs)
 {
     using (new Statistic((StatisticsTracer)HttpContext.Current.Items[StatisticsSlotName], "OnPreProcessRequest", FullDetail))
     {
         _httpApplicationEvents.OnPreProcessRequest(sender, eventArgs);
     }
 }