Click or drag to resize
SpeechRecognitionMode Enumeration
Determines what type of request to make to the Speech Recognition Server.

In ShortPhrase mode, an utterance may only up to 15 sec long, as data is sent to the server, the client will receive multiple partial results and one final multiple n-best choice result.

In LongDictation mode, an utterance may be only up to 2 minutes long, as data is sent to the server, the client will receive multiple partial results and multiple final results, based on where the server thinks sentence pauses are.

Namespace: Microsoft.CognitiveServices.SpeechRecognition
Assembly: SpeechClient (in SpeechClient.dll) Version: 0.0.0.0
Syntax
public enum SpeechRecognitionMode
Members
  Member nameValueDescription
ShortPhrase0 in ShortPhrase mode, an utterance may only up to 15 sec long, as data is sent to the server, the client will receive multiple partial results and one final multiple n-best choice result.
LongDictation1 In LongDictation mode, an utterance may be only up to 2 minutes long, as data is sent to the server, the client will receive multiple partial results and multiple final results, based on where the server thinks sentence pauses are. Not compatible with intent parsing.
See Also