Gets whether the two participants are equal.

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

Syntax

Visual Basic (Declaration)
Public 
Shared 
Operator 
= ( _
	
participant1 
As 

ConferenceParticipantInformation, _
	
participant2 
As 
Object _
) 
As 
Boolean
C#
public 
static 
bool 
operator 
==(
	

ConferenceParticipantInformation 
participant1,
	
Object 
participant2
)
Visual C++
public:
static 
bool 
operator 
==(
	

ConferenceParticipantInformation^ 
participant1, 
	
Object^ 
participant2
)
JavaScript
JavaScript does not support overloaded
operators.

Parameters

participant1
Type: Microsoft.Rtc.Collaboration.ConferenceManagement . . :: . ConferenceParticipantInformation
The first participant to compare.
participant2
Type: Object
The instance to compare to.

Return Value

True if the participants are equal, otherwise returns false.

See Also