コード例 #1
0
ファイル: SASManagerService.cs プロジェクト: clavalle/OCTGN
 protected override void OnStop()
 {
     Log.Info("OnStop Called");
     GameServiceClient.GetContext().Stop();
     SasManager.GetContext().Stop();
     this.FireOnServiceStop();
     Log.Info("OnStop Completed");
 }
コード例 #2
0
ファイル: SASManagerService.cs プロジェクト: clavalle/OCTGN
 public void Start()
 {
     Log.Info("Starting");
     this.OnStart(null);
     GameServiceClient.GetContext().Start();
     SasManager.GetContext().Start();
     Log.Info("Started");
 }