TextToSpeech.SpeakAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
SpeakAsync(String, CancellationToken) |
Speaks the given text with default options. |
SpeakAsync(String, SpeechOptions, CancellationToken) |
Speaks the given text with the specified options. |
SpeakAsync(String, CancellationToken)
Speaks the given text with default options.
public static System.Threading.Tasks.Task SpeakAsync (string text, System.Threading.CancellationToken cancelToken = null);
Parameters
- text
- System.String
The text to speak..
- cancelToken
- System.Threading.CancellationToken
Optional cancellation token to stop speaking.
Returns
System.Threading.Tasks.Task
Applies to
SpeakAsync(String, SpeechOptions, CancellationToken)
Speaks the given text with the specified options.
public static System.Threading.Tasks.Task SpeakAsync (string text, Xamarin.Essentials.SpeechOptions options, System.Threading.CancellationToken cancelToken = null);
Parameters
- text
- System.String
The text to speak.
- options
- SpeechOptions
The options to use for speaking.
- cancelToken
- System.Threading.CancellationToken
Optional cancellation token to stop speaking.
Returns
System.Threading.Tasks.Task