Share via


SpeechRecognizerTimeouts.BabbleTimeout Property

Definition

Gets and sets the length of time that a SpeechRecognizer continues to listen while receiving unrecognizable sounds (babble) before it assumes speech input has ended and finalizes the recognition operation.

public:
 property TimeSpan BabbleTimeout { TimeSpan get(); void set(TimeSpan value); };
TimeSpan BabbleTimeout();

void BabbleTimeout(TimeSpan value);
public System.TimeSpan BabbleTimeout { get; set; }
var timeSpan = speechRecognizerTimeouts.babbleTimeout;
speechRecognizerTimeouts.babbleTimeout = timeSpan;
Public Property BabbleTimeout As TimeSpan

Property Value

The length of time that the speech recognizer continues to listen while detecting only non-speech input such as background noise. The default is 0 seconds (not activated).

Applies to

See also