AltitudeAngelWings.PluginMain.Exit C# (CSharp) 메소드

Exit() 공개 메소드

public Exit ( ) : bool
리턴 bool
        public override bool Exit()
        {
            if (InterfaceMain != null)
            {
                InterfaceMain.Dispose();
                InterfaceMain = null;
            }

            if (_lifetimeScope != null)
            {
                _lifetimeScope.Dispose();
                _lifetimeScope = null;
            }

            return true;
        }