Represents a connection pool. Each pool is identified by a destination tuple that consists of the hostname, the listening port of that host, and the transport type (TCP or TLS). The pool consists of 0 or more connections at any time and can grow to a maximum number of connections set by the application. The connection pool only represents outgoing connections and is not used to represent incoming connections as they are not used for pooling.

Namespace:  Microsoft.Rtc.Signaling
Assembly:  Microsoft.Rtc.Collaboration(in Microsoft.Rtc.Collaboration.dll)

Syntax

Visual Basic (Declaration)
Public 
Class 
ConnectionPool
C#
public 
class 
ConnectionPool
Visual C++
public 
ref class 
ConnectionPool
JavaScript

Microsoft.Rtc.Signaling.ConnectionPool = 
function();

Type.createClass(
		'Microsoft.Rtc.Signaling.ConnectionPool');

Inheritance Hierarchy

Object
   Microsoft.Rtc.Signaling . . :: . ConnectionPool

See Also