Class SpeechRecognizerErrorOccurredEventArgs
Provides data for the error occurred event in the speech recognizer.
Inheritance
Namespace: Telerik.Maui.SpeechRecognizer
Assembly: Telerik.Maui.Core.dll
Syntax
public class SpeechRecognizerErrorOccurredEventArgs : EventArgs
Constructors
SpeechRecognizerErrorOccurredEventArgs(String, Exception)
Initializes a new instance of the SpeechRecognizerErrorOccurredEventArgs class with the specified error message and optional exception.
Declaration
public SpeechRecognizerErrorOccurredEventArgs(string message, Exception exception = null)
Parameters
System.String
message
The error message. |
System.Exception
exception
The exception associated with the error, if any. |
Fields
Exception
Gets the exception associated with the speech recognizer error, if any.
Declaration
public readonly Exception Exception
Field Value
System.Exception
|
Message
Gets the error message associated with the speech recognizer error.
Declaration
public readonly string Message
Field Value
System.String
|
Properties
Handled
Gets or sets a value indicating whether the error has been handled.
Declaration
public bool Handled { get; set; }
Property Value
System.Boolean
|