TranslationRecognizer.StartKeywordRecognitionAsync Method

Definition

Configures the recognizer with the given keyword model. After calling this method, the recognizer is listening for the keyword to start the recognition. Call StopKeywordRecognitionAsync() to end the keyword initiated recognition. You must subscribe to events to receive recognition results.

public System.Threading.Tasks.Task StartKeywordRecognitionAsync (Microsoft.CognitiveServices.Speech.KeywordRecognitionModel model);
member this.StartKeywordRecognitionAsync : Microsoft.CognitiveServices.Speech.KeywordRecognitionModel -> System.Threading.Tasks.Task
Public Function StartKeywordRecognitionAsync (model As KeywordRecognitionModel) As Task

Parameters

model
KeywordRecognitionModel

The keyword recognition model that specifies the keyword to be recognized.

Returns

A task representing the asynchronous operation that starts the recognition.

Remarks

See also: Use a keyword model with the SDK

Applies to