CallState Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Defines the state of the call.
public enum class CallState
public enum CallState
type CallState =
Public Enum CallState
- Inheritance
-
CallState
Fields
Name | Value | Description |
---|---|---|
Idle | 0 | The call is idle. |
Incoming | 1 | The call has just been received. |
Establishing | 2 | The call establishment is in progress after initiating or accepting the call. |
Established | 3 | The call is established. |
Transferring | 5 | The call has initiated a transfer. |
Terminating | 7 | The call is terminating. |
Terminated | 8 | The call has terminated. |
Parking | 9 | Call parking operation is in progress. |
Remarks
The CallState value is exposed by the State property on the Call class.