Call.HandleCallMessageReceived(CallMessageReceivedEventArgs) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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.