TransferType Enumeration

Microsoft Speech Platform SDK 11

Collapse imageExpand ImageCopy imageCopyHover image

Represents the type of call transfer to be performed during an asynchronous session.

Namespace:  Microsoft.Speech.VoiceXml.Common
Assembly:  Microsoft.Speech.VoiceXml (in Microsoft.Speech.VoiceXml.dll)

Syntax

C#
public enum TransferType

Members

Member nameValueDescription
Blind0
The application redirects the caller to the recipient without remaining in the connection, and does not monitor the outcome. The Browser exits the page.
Bridge1
The application redirects the caller to the recipient and remains in the connection. Document interpretation suspends until the transferred call terminates.
Consultation2
The application redirects the caller to the recipient and monitors the progress of the transfer until the connection is established between caller and recipient. If the connection is established, the Browser disconnects from the session.

Remarks

When the Transferred event is raised, the Type property on the TransferredEventArgs instance indicates the transfer type. When the Transferring event is raised, the Type property on the TransferringEventArgs instance indicates the transfer type.

See Also