IRadSpeechRecognizer
Interface
Defines the contract for a speech recognizer component.
Definition
Namespace:Telerik.Maui.SpeechRecognizer
Assembly:Telerik.Maui.Core.dll
Syntax:
C#
public interface IRadSpeechRecognizer : IAsyncDisposable
Derived Classes:
Inherited Members
Properties
Gets the current state of the speech recognizer.
C#
SpeechRecognizerState State { get; }
Methods
Initializes the speech recognizer with the specified context.
C#
Task Init(SpeechRecognizerInitializationContext context)
The initialization context.
Returns:A task that represents the asynchronous operation.
Resets the speech recognizer to its initial state.
Starts listening for speech input.
Stops listening for speech input.
Events
Occurs when an error is encountered by the speech recognizer.
C#
event EventHandler<SpeechRecognizerErrorOccurredEventArgs> ErrorOccurred
Occurs when speech is successfully recognized.
C#
event EventHandler<SpeechRecognizerSpeechRecognizedEventArgs> SpeechRecognized
Occurs when the state of the speech recognizer changes.
C#
event EventHandler StateChanged