コード例 #1
0
 void AiService_OnError(AIServiceException exception)
 {
     Log.Debug(TAG, "AiService_OnError", exception.ToString());
     RunOnUiThread(() =>
     {
         resultTextView.Text = exception.ToString();
     }
                   );
 }
コード例 #2
0
        void AiService_OnError(AIServiceException e)
        {
            Log.Debug("iOSSampleViewController", e.ToString());

            InvokeOnMainThread(() =>
            {
                resultTextView.Text = e.ToString();
            }
                               );
        }
コード例 #3
0
ファイル: Speech_iOS.cs プロジェクト: Studyxnet/BuscaPorVoz
        void AiService_OnError(AIServiceException e)
        {
            Log.Debug("Speech_iOS_Renderer", e.ToString());

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