SpeechBargein Property

SpeechBargein Property

Gets and sets a string that specifies whether speech detection for barge-in occurs on the telephony card, or in the speech recognition engine.

obj.SpeechBargein = string

Part

Description

obj

An instance of the TAS class.

string

A case-insensitive string that specifies whether speech detection for barge-in occurs on the telephony card, or in the speech recognition engine.

Qualifiers

Qualifier

Value

Description

Registry

True

If True, this property value is read from the Registry.

Restart

False

If False, changes to this property take effect without requiring the service to restart.

DefaultValue

"engine"

Default value for this property.

ValueMap

"card", "engine"

These are the values stored in the Registry.

Values

"card", "engine"

These are the values set by administrators, and serve as an index to the values in ValueMap.

Remarks

This property is exposed in the Microsoft Speech Server (MSS) snap-in for Microsoft Management Console (MMC).

This setting is applicable only when the SALT application specifies a prompt with bargeintype="speech".

Windows Management Instrumentation (WMI) Script Example

myComputer = "localhost"

' Use a Locator object to connect to WMI.
Set locator = CreateObject("WbemScripting.SWbemLocator")
Set namespace = locator.ConnectServer(myComputer, "root/MSS")

' Get the TAS instance.
Set tel = namespace.Get("TAS=@")

' Display the current value.
WScript.Echo tel.SpeechBargein

' Set the property value.
tel.SpeechBargein = "card"

' Update the class instance in WMI.
tel.Put_

Member Of

TAS class