Dev2.ServerLifecycleManager.ServerLifecycleManagerService.OnStart C# (CSharp) Method

OnStart() protected method

protected OnStart ( string args ) : void
args string
return void
            protected override void OnStart(string[] args)
            {
                Dev2Logger.Log.Info("** Service Started **");
                _singleton = new ServerLifecycleManager(null);
                _singleton.Run(false);
            }
ServerLifecycleManager.ServerLifecycleManagerService