TransferState Enumeration

Microsoft Speech Platform SDK 11

Collapse imageExpand ImageCopy imageCopyHover image

Represents the state of a VoiceXML phone call transfer request during an asynchronous session.

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

Syntax

C#
public enum TransferState

Members

Member nameValueDescription
None0
The state for the transfer was not given.
Transferring1
A call transfer is in progress.
Transferred2
The call transfer to the recipient was successful.
Failed3
The call transfer to the recipient was not successful, for example there was no answer or the line was busy.
UnknownError2147483647
There was an error during transfer, but its cause could not be determined.

Remarks

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

See Also