private void OnConnectFail(RIPEErrType ripeErrType)
 {
     AppLog.Log("OnConnectedFail EVENT", true);
     if (this.OnDisconnectedAction != null)
     {
         this.OnDisconnectedAction();
     }
     this.ResetLicenseEndStartDiscovering();
 }
Exemple #2
0
 public STSWRunTimeException(RIPEErrType errCode, string message, Exception inner) : base(string.Concat("SkyTrakSW Exception: ", message, ". Code: ", errCode.ToString("D")), inner)
 {
 }
 private void OnDiscoverFail(RIPEErrType ripeErrType)
 {
     AppLog.Log(string.Concat("DISCOVER WAS FAIL: ", ripeErrType), true);
     AppLog.Log("START DISCOVERING AGAIN", true);
     this.ResetLicenseEndStartDiscovering();
 }