Call.HandleCallMessageReceived(CallMessageReceivedEventArgs) Method

Definition

Handles a message received event in a class derived from the call class.

protected:
 virtual bool HandleCallMessageReceived(Microsoft::Rtc::Collaboration::CallMessageReceivedEventArgs ^ e);
protected virtual bool HandleCallMessageReceived (Microsoft.Rtc.Collaboration.CallMessageReceivedEventArgs e);
abstract member HandleCallMessageReceived : Microsoft.Rtc.Collaboration.CallMessageReceivedEventArgs -> bool
override this.HandleCallMessageReceived : Microsoft.Rtc.Collaboration.CallMessageReceivedEventArgs -> bool
Protected Overridable Function HandleCallMessageReceived (e As CallMessageReceivedEventArgs) As Boolean

Parameters

e
CallMessageReceivedEventArgs

MessageReceivedEventArgs containing the parsed message data.

Returns

Returns true if message is being handled by call, else returns false.

Remarks

Handles the message received on the call, returns true if the call is handling the message.

This method is invoked only for the messages which are not handled by the MediaProvider. Message will be first delivered to MediaProvider.HandleMessage. If MediaProvider.HandleMessage returns false, this method will be invoked.

Applies to