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;
            }
        }