Raised when an invitation to a conference is received.

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

Syntax

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

ConferenceInvitationReceivedEventArgs)
C#
public event 
EventHandler<

ConferenceInvitationReceivedEventArgs> 
ConferenceInvitationReceived
Visual C++
public:
 
event 
EventHandler<

ConferenceInvitationReceivedEventArgs^>^ 
ConferenceInvitationReceived {
	
void 
add (
EventHandler<

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

ConferenceInvitationReceivedEventArgs^>^ 
value);
}
JavaScript
function add_
conferenceInvitationReceived(
value);
function remove_
conferenceInvitationReceived(
value);

Remarks

Upon receiving an invitation to a conference, the application is responsible for accepting the invitation before joining the conference. Otherwise it should decline the invitation.

See Also