Returns true if the provisional response code is used on directly connected SIP entities.

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

Syntax

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

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

Parameters

responseCode
Type: Int32
The response code to check.

Return Value

Returns true if the response code is a single hop provisional; otherwise false.

Remarks

Most provisionals are sent end to end between UAS and UAC. In many cases the ones that are sent only on 1 hop need to be handled differently.

See Also