UCC_SESSION_ENTITY_STATE Enumeration
Enumerates the states of a session entity.
Namespace: Microsoft.Office.Interop.UccApi
Assembly: Microsoft.Office.Interop.UccApi (in microsoft.office.interop.uccapi.dll)
Assembly: Microsoft.Office.Interop.UccApi (in microsoft.office.interop.uccapi.dll)
| Member name | Description |
|---|---|
| UCCSES_CONNECTED | A flag indicating that the session entity is in a connected state. |
| UCCSES_CONNECTING | A flag indicating that the session entity is in a state of being connected. |
| UCCSES_DISCONNECTED | A flag indicating that the session entity is in a disconnected state. |
| UCCSES_DISCONNECTING | A flag indicating that the session entity is in a state of being disconnected. |
| UCCSES_IDLE | A flag indicating that the session entity is in an idle state. |
A session entity include a participant endpoint in a transmission-based session such as an IM or AV session or a participant endpoint in a transmission-free conference session. A session entity can be in one of the states defined as the members of this enumeration type.
Win32 COM/C++ Syntax
typedef enum UCC_SESSION_ENTITY_STATE
{
UCCSES_IDLE = 0x00000001,
UCCSES_CONNECTING = 0x00000002,
UCCSES_CONNECTED = 0x00000003,
UCCSES_DISCONNECTING = 0x00000004,
UCCSES_DISCONNECTED = 0x00000005
};