Class
SpeechToTextButtonResultEventArgs

Provides data for the speech-to-text result event, including alternative transcriptions and the result's finality status.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

cs-api-definition
public class SpeechToTextButtonResultEventArgs

Inheritance: objectSpeechToTextButtonResultEventArgs

Constructors

SpeechToTextButtonResultEventArgs()

Declaration

cs-api-definition
public SpeechToTextButtonResultEventArgs()

Properties

Alternatives

The collection of alternative transcriptions for the speech-to-text operation.

Declaration

cs-api-definition
public List<SpeechRecognitionAlternative> Alternatives { get; set; }

Property Value

List<SpeechRecognitionAlternative>

Remarks

The collection may contain multiple alternatives, typically ordered by confidence level, with the most likely transcription first.

IsFinal

A boolean value that states whether this result is final (true) or not (false). if true, then this is the final time this result will be returned; if not, then this result is an interim result, and may be updated later on.

Declaration

cs-api-definition
public bool IsFinal { get; set; }

Property Value

bool