UCC_TRANSPORT_MODE Enumeration

This content is no longer actively maintained. It is provided as is, for anyone who may still be using these technologies, with no warranties or claims of accuracy with regard to the most recent product version or service release.

Enumerates available transport modes supported by the UCC API.

Namespace: Microsoft.Office.Interop.UccApi
Assembly: Microsoft.Office.Interop.UccApi (in microsoft.office.interop.uccapi.dll)

Syntax

'Declaration
Public Enumeration UCC_TRANSPORT_MODE
public enum UCC_TRANSPORT_MODE
public enum class UCC_TRANSPORT_MODE
public enum UCC_TRANSPORT_MODE
public enum UCC_TRANSPORT_MODE

Members

Member name Description
UCCTM_TCP A flag indicating that the transport mode is TCP.
UCCTM_TLS A flag indicating that the transport mode is TLS.
UCCTM_UDP A flag indicating that the transport mode is UDP. This mode is not currently supported.

Remarks

An application must specify a transport mode as part of the signaling settings when registering a user's endpoint with Office Communications Server. It does so in a call to the IUccServerSignalingSettings::CreateSignalingServer method. The application also needs to specify a transport mode when adding a new media connectivity server. It does this in a call to IUccMediaConnectivityServer::AddMediaConnectivityServer.

Win32 COM/C++ Syntax

typedef enum UCC_TRANSPORT_MODE
{
   UCCTM_UDP = 0x00000001,
   UCCTM_TCP = 0x00000002,
   UCCTM_TLS = 0x00000003
};

Platforms

Development Platforms

Windows XP Professional with Service Pack 2 (SP2), Windows Server 2000 with Service Pack 4, Windows Server 2003, Windows Vista Ultimate Edition, Windows Vista Business Edition, Windows Vista Enterprise Edition

Target Platforms

See Also

Reference

Microsoft.Office.Interop.UccApi Namespace