Gets the list of participants, and their roles.

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

Syntax

Visual Basic (Declaration)
Public 
Property 
Participants 
As 
Collection(
Of 

ConferenceParticipantInformation)
C#
public 
Collection<

ConferenceParticipantInformation> 
Participants { 
get; 
internal 
set; }
Visual C++
public:
property 
Collection<

ConferenceParticipantInformation^>^ 
Participants {
	
Collection<

ConferenceParticipantInformation^>^ 
get ();
	
void 
set (
Collection<

ConferenceParticipantInformation^>^ 
value);
}
JavaScript
function get_
participants();
function set_
participants(
value);

Remarks

The organizer doesn't need to be added to the participant list. They will automatically be added with a role of Presenter.

See Also