Returns true if the provisional response code is a provisional, that is not hop by hop.

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

Syntax

Visual Basic (Declaration)
Public 
Shared 
Function 
IsEndToEndProvisional ( _
	
responseCode 
As 
Integer _
) 
As 
Boolean
C#
public 
static 
bool 
IsEndToEndProvisional(
	
int 
responseCode
)
Visual C++
public:
static 
bool 
IsEndToEndProvisional(
	
int 
responseCode
)
JavaScript

Microsoft.Rtc.Signaling.ResponseCode.
isEndToEndProvisional = 
function(
responseCode);

Parameters

responseCode
Type: Int32
The response code to check.

Return Value

Returns true if the response code is a a provisional and not hop by hop; otherwise false.

Remarks

Most provisionals are sent end to end between UAS and UAC. This method can be used to filter out those that are exceptions.

See Also