Gets the properties of the supplied participant endpoint in this MCU.

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 

InstantMessagingMcuParticipantEndpointProperties _
) 
As 
Boolean
C#
public 
bool 

TryGetParticipantEndpointProperties(
	

ParticipantEndpoint 
endpoint,
	
out 

InstantMessagingMcuParticipantEndpointProperties 
properties
)
Visual C++
public:
bool 

TryGetParticipantEndpointProperties(
	

ParticipantEndpoint^ 
endpoint, 
		[
OutAttribute] 

InstantMessagingMcuParticipantEndpointProperties^% 
properties
)
JavaScript
function 

tryGetParticipantEndpointProperties(
endpoint, 
properties);

Parameters

endpoint
Type: Microsoft.Rtc.Collaboration . . :: . ParticipantEndpoint
The participant endpoint for which to retrieve properties.
properties
Type: Microsoft.Rtc.Collaboration . . :: . InstantMessagingMcuParticipantEndpointProperties %
The properties if available, or null.

Return Value

True if properties were found for this participant, otherwise false.

See Also