コード例 #1
0
 public override void Stop()
 {
     Platform.Log(LogLevel.Info, "{0}[{1}]: Stop invoked", _className, AppDomain.CurrentDomain.FriendlyName);
     if (_serviceMount != null)
     {
         _serviceMount.CloseServices();
     }
 }
コード例 #2
0
ファイル: Application.cs プロジェクト: bangush/server-1
        private void ShutDown()
        {
            Platform.Log(LogLevel.Info, "Stopping WCF services...");

            _serviceMount.CloseServices();

            Platform.Log(LogLevel.Info, "WCF services stopped.");

            _isStarted = false;
        }