private void OnError(string error)
 {
     if (errorCallback != null)
     {
         if (!string.IsNullOrEmpty(error))
         {
             errorCallback.Invoke(error);
         }
     }
 }
Beispiel #2
0
 public void OnError(string error) //Gestiona un error de TTS
 {
     if (_callback != null)
     {
         if (error.Length > 0)
         {
             _callback.Invoke(error);
         }
     }
     ShowMssg(error);
 }
Beispiel #3
0
 public void OnError(string error)
 {
     if (_callback != null)
     {
         if (error.Length > 0)
         {
             _callback.Invoke(error);
         }
     }
     ShowToast(error);
 }