AltitudeAngelWings.PluginMain.Exit C# (CSharp) Method

Exit() public method

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

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

            return true;
        }