IntentRecognizer.StartKeywordRecognitionAsync(KeywordRecognitionModel) 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

Note: Keyword recognition features might work with any microphone type, but official support is currently limited to the microphone arrays found in the Azure Kinect DK hardware or the Speech Devices SDK.

Applies to