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();
            }
                               );
        }
Example #3
0
        void AiService_OnError(AIServiceException e)
        {
            Log.Debug("Speech_iOS_Renderer", e.ToString());

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