Returns true if the response is in the range of successful responses; otherwise false. A return value of false does not necessarily mean it is a failure response.

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

Syntax

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

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

Parameters

responseCode
Type: Int32
The response code to check.

Return Value

Returns true when the response is in the range of successful responses; otherwise false.

See Also