Example #1
0
        public void SetSpeechText([Converter("ToJSON")] string speechText_json)
        {
            var speechText = JsonConvert.DeserializeObject <SpeechText>(speechText_json);

            wvp.DoOnMainThreadAsync(() => wvp.SetSpeechText(speechText)).ConfigureAwait(false);
        }
Example #2
0
 public void SetSpeechText(SpeechText speechText)
 {
     wvp.DoOnMainThreadAsync(() => wvp.SetSpeechText(speechText)).ConfigureAwait(false);
 }