Ejemplo n.º 1
0
        void AiService_OnError(AIServiceException e)
        {
            Log.Debug("Speech_iOS_Renderer", e.ToString());

            InvokeOnMainThread(() =>
                {
                    //resultTextView.Text = e.ToString();
                }
            );
        }
Ejemplo n.º 2
0
 void AiService_OnError(AIServiceException exception)
 {
     Log.Debug(TAG, "AiService_OnError", exception.ToString());
     RunOnUiThread(() =>
         {
             resultTextView.Text = exception.ToString();
         }
     );
 }
        void AiService_OnError(AIServiceException e)
        {
            Log.Debug("iOSSampleViewController", e.ToString());

            InvokeOnMainThread(() =>
                {
                    resultTextView.Text = e.ToString();
                }
            );
        }