Atomia.Web.Frame.MvcApplication.Application_PreSendRequestHeaders C# (CSharp) Метод

Application_PreSendRequestHeaders() защищенный Метод

Handles the PreSendRequestHeaders event of the Application control.
protected Application_PreSendRequestHeaders ( object sender, EventArgs e ) : void
sender object The source of the event.
e System.EventArgs The instance containing the event data.
Результат void
        protected void Application_PreSendRequestHeaders(object sender, EventArgs e)
        {
            if (this.HandlerClass != null)
            {
                this.HandlerClass.Application_PreSendRequestHeaders(sender, e);
            }
        }