ProcessErrorResponse is invoked, when non-200 response is received from the server.

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

Syntax

Visual Basic (Declaration)
Sub 
ProcessErrorResponse ( _
	
message 
As 

SipResponseData _
)
C#
void 
ProcessErrorResponse(
	

SipResponseData 
message
)
Visual C++
void 
ProcessErrorResponse(
	

SipResponseData^ 
message
)
JavaScript
function 
processErrorResponse(
message);

Parameters

message
Type: Microsoft.Rtc.Signaling . . :: . SipResponseData
ResponsData received from server.

Remarks

SipSubscription state change will occur before the method is invoked. This give chance to app to investigate the error for subscription failure, If Subscription state is WaitingForRetry, application can choose to terminate the subscription, if it do not want to retry the subscription.

See Also