コード例 #1
0
 public void Stop()
 {
     RpcEndpoint = null;
     IsLinking   = false;
     if (_radarInfomation != null)
     {
         _radarInfomation.Dispose();
     }
     _radarInfomation = null;
 }
コード例 #2
0
 public void Start(string rpcEndpoint)
 {
     Stop();
     _radarInfomation = new RadarInfomation(rpcEndpoint);
     if (_radarInfomation != null)
     {
         IsLinking = true;
     }
     RpcEndpoint = rpcEndpoint;
 }