BoxInformation.Global.Application_End C# (CSharp) Метод

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

protected Application_End ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
Результат void
        protected void Application_End(object sender, EventArgs e)
        {
            IUnityContainer applicationContainer = this.ApplicationContainer;

            if (applicationContainer != null)
            {
                applicationContainer.Dispose();

                this.ApplicationContainer = null;
            }
        }