Esempio n. 1
0
 public void Stop()
 {
     RpcEndpoint = null;
     IsLinking   = false;
     if (_radarInfomation != null)
     {
         _radarInfomation.Dispose();
     }
     _radarInfomation = null;
 }
Esempio n. 2
0
 public void Start(string rpcEndpoint)
 {
     Stop();
     _radarInfomation = new RadarInfomation(rpcEndpoint);
     if (_radarInfomation != null)
     {
         IsLinking = true;
     }
     RpcEndpoint = rpcEndpoint;
 }