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

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

Handles the PostRequestHandlerExecute event of the Application control.
protected Application_PostRequestHandlerExecute ( 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_PostRequestHandlerExecute(object sender, EventArgs e)
        {
            if (this.HandlerClass != null)
            {
                this.HandlerClass.Application_PostRequestHandlerExecute(sender, e);
            }
        }