Raised when an INFO message is received on this call.

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

Syntax

Visual Basic (Declaration)
Public Event 
InfoReceived 
As 
EventHandler(
Of 

MessageReceivedEventArgs)
C#
public event 
EventHandler<

MessageReceivedEventArgs> 
InfoReceived
Visual C++
public:
 
event 
EventHandler<

MessageReceivedEventArgs^>^ 
InfoReceived {
	
void 
add (
EventHandler<

MessageReceivedEventArgs^>^ 
value);
	
void 
remove (
EventHandler<

MessageReceivedEventArgs^>^ 
value);
}
JavaScript
function add_
infoReceived(
value);
function remove_
infoReceived(
value);

Remarks

Some of the INFO messages received on the wire will be handled by the call itself. This event will be raised to the application only when the call does not handle the incoming INFO message.

See Also