withSIX.Updater.Presentation.Wpf.UpdaterApp.Launch C# (CSharp) Method

Launch() public static method

public static Launch ( ) : void
return void
        public static void Launch() {
            var application = new UpdaterApp {ShutdownMode = ShutdownMode.OnMainWindowClose};
            application.InitializeComponent();
            application.Run();
        }
    }

Usage Example

Esempio n. 1
0
        static void Initialize()
        {
            AttachConsole(-1);
            CommonBase.AssemblyLoader = new AssemblyLoader(Assembly.GetEntryAssembly());
            // TODO
            ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls11 | SecurityProtocolType.Tls12;

            StartupSequence.PreInit(AppName);
            UpdaterApp.Launch();
            if (Common.OnExit != null)
            {
                Common.OnExit();
            }
        }