Get the tuple needed to make the connection.

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

Syntax

Visual Basic (Declaration)
Protected 
Overridable 
Function 
GetDestinationTuple ( _
	
transportType 
As 

SipTransportType, _
	
host 
As 
String, _
	
port 
As 
Integer, _
	
tlsTarget 
As 
String _
) 
As 
SipDestinationTuple
C#
protected 
virtual 
SipDestinationTuple 
GetDestinationTuple(
	

SipTransportType 
transportType,
	
string 
host,
	
int 
port,
	
string 
tlsTarget
)
Visual C++
protected:
virtual 
SipDestinationTuple^ 
GetDestinationTuple(
	

SipTransportType 
transportType, 
	
String^ 
host, 
	
int 
port, 
	
String^ 
tlsTarget
)
JavaScript
function 
getDestinationTuple(
transportType, 
host, 
port, 
tlsTarget);

Parameters

transportType
Type: Microsoft.Rtc.Signaling . . :: . SipTransportType
The transport type for the connection.
host
Type: String
The host name to connect to.
port
Type: Int32
The port for the connection.
tlsTarget
Type: String
The tls target. Used for Tls only.

Return Value

The tuple.

See Also