New to Telerik UI for BlazorStart a free 30-day trial

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:

C#
public class SpeechToTextButtonResultEventArgs

Inheritance: objectSpeechToTextButtonResultEventArgs

Constructors

C#
public SpeechToTextButtonResultEventArgs()

Properties

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

C#
public List<SpeechRecognitionAlternative> Alternatives { get; set; }
Remarks:

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

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.

C#
public bool IsFinal { get; set; }