Gets the properties for the given participant endpoint.

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

Syntax

Visual Basic (Declaration)
Public 
Function 
TryGetParticipantEndpointProperties
( _
	
endpoint 
As 

ParticipantEndpoint, _
		<
OutAttribute> 
ByRef 
properties 
As 

ConferenceParticipantEndpointProperties _
) 
As 
Boolean
C#
public 
bool 

TryGetParticipantEndpointProperties(
	

ParticipantEndpoint 
endpoint,
	
out 

ConferenceParticipantEndpointProperties 
properties
)
Visual C++
public:
bool 

TryGetParticipantEndpointProperties(
	

ParticipantEndpoint^ 
endpoint, 
		[
OutAttribute] 

ConferenceParticipantEndpointProperties^% 
properties
)
JavaScript
function 

tryGetParticipantEndpointProperties(
endpoint, 
properties);

Parameters

endpoint
Type: Microsoft.Rtc.Collaboration . . :: . ParticipantEndpoint
The participant endpoint to get properties for.
properties
Type: Microsoft.Rtc.Collaboration . . :: . ConferenceParticipantEndpointProperties %
The properties object or null if the participant is not in the conference.

Return Value

True if properties are found, otherwise false.

See Also