Esempio n. 1
0
 public void Zoiper_OnAccountExtendedError(Account account, ExtendedError error)
 {
     if (OnZoiperEvent != null)
     {
         OnZoiperEvent("AccountExtendedError Message: " + error.Message);
     }
 }
Esempio n. 2
0
 private void ZDK_NET_OnCallTransferFailure(Call call, ExtendedError errorCode)
 {
     if (OnZoiperEvent != null)
     {
         OnZoiperEvent("OnCallTransferFailure reason: " + errorCode.Message);
     }
 }
Esempio n. 3
0
 private void ZDK_NET_OnCallExtendedError(Call call, ExtendedError error)
 {
     if (OnZoiperEvent != null)
     {
         OnZoiperEvent("OnCallExtendedError message: " + error.Message);
     }
 }
Esempio n. 4
0
        public override bool Equals(object obj)
        {
            ExtendedError other = (ExtendedError)obj;

            if (this.Name == other.Name &&
                this.Email == other.Email &&
                this.PresentInVersion == other.PresentInVersion &&
                this.Date == other.Date &&
                this.Description == other.Description)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }