Returns true if the two endpoints are equal.

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

Syntax

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

ParticipantEndpoint, _
	
endpoint2 
As 
Object _
) 
As 
Boolean
C#
public 
static 
bool 
operator 
==(
	

ParticipantEndpoint 
endpoint1,
	
Object 
endpoint2
)
Visual C++
public:
static 
bool 
operator 
==(
	

ParticipantEndpoint^ 
endpoint1, 
	
Object^ 
endpoint2
)
JavaScript
JavaScript does not support overloaded
operators.

Parameters

endpoint1
Type: Microsoft.Rtc.Collaboration . . :: . ParticipantEndpoint
The first endpoint to compare.
endpoint2
Type: Object
The instance to compare to.

Return Value

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

See Also