Represents the various states of the speech recognizer lifecycle.
Definition
Namespace:Telerik.Maui.SpeechRecognizer
Assembly:Telerik.Maui.Core.dll
Syntax:
C#
public enum SpeechRecognizerState
Fields
The recognizer has been disposed and cannot be used.
C#
Disposed = 9
The recognizer is in the process of being disposed.
C#
Disposing = 8
The recognizer has encountered an error and is in a faulted state, but it ca be reset (see Reset()).
C#
Faulted = 6
The recognizer is in the process of initializing.
C#
Initializing = 1
The recognizer is actively listening for speech input.
C#
Listening = 4
The recognizer has not been initialized.
C#
NotInitialized = 0
The recognizer is ready to start listening.
C#
Ready = 2
The recognizer is resetting its state into not initialized.
C#
Resetting = 7
The recognizer is starting to listen for speech input.
C#
StartingListening = 3
The recognizer is stopping the listening process.
C#
StoppingListening = 5