Gets whether the two participants are equal.

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

Syntax

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

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

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

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

Parameters

participant1
Type: Microsoft.Rtc.Collaboration . . :: . ConversationParticipant
The first participant to compare.
participant2
Type: Object
The object to compare to.

Return Value

Returns true if the participants are equal, otherwise returns false.

See Also