ConferenceCommandResponse.TryProcessResponseCore Method
Process the response and populate the properties of the response object.
Namespace: Microsoft.Rtc.Collaboration
Assembly: Microsoft.Rtc.Collaboration (in Microsoft.Rtc.Collaboration.dll)
Syntax
'Declaration
Protected MustOverride Function TryProcessResponseCore ( _
messageData As SipMessageData, _
<OutAttribute> ByRef exception As RealTimeException _
) As Boolean
'Usage
Dim messageData As SipMessageData
Dim exception As RealTimeException
Dim returnValue As Boolean
returnValue = Me.TryProcessResponseCore(messageData, _
exception)
protected abstract bool TryProcessResponseCore(
SipMessageData messageData,
out RealTimeException exception
)
Parameters
- messageData
Type: Microsoft.Rtc.Signaling.SipMessageData
The message that contains the result of the request.
- exception
Type: Microsoft.Rtc.Signaling.RealTimeException
Any exception encountered during processing
Return Value
Type: System.Boolean
True if processing was successful, otherwise false.
Remarks
The message body contains the XML to process for the C3P response. The message itself may be an INFO request with the final result ("success" or "pending") or may be a 200 OK response to the INFO message making the initial request.
See Also
Reference
ConferenceCommandResponse Class