Atomia.Web.Frame.MvcApplication.Application_PreSendRequestHeaders C# (CSharp) Method

Application_PreSendRequestHeaders() protected method

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.
return void
        protected void Application_PreSendRequestHeaders(object sender, EventArgs e)
        {
            if (this.HandlerClass != null)
            {
                this.HandlerClass.Application_PreSendRequestHeaders(sender, e);
            }
        }