Creates a new instance of PropertiesChangedEventArgs.

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

Syntax

Visual Basic (Declaration)
Protected Friend 
Sub 
New ( _
	
changedPropertyNames 
As 
IEnumerable(
Of 
String), _
	
properties 
As TProperties _
)
C#
protected internal 
PropertiesChangedEventArgs(
	
IEnumerable<
string> 
changedPropertyNames,
		TProperties 
properties
)
Visual C++
protected public:
PropertiesChangedEventArgs(
	
IEnumerable<
String^>^ 
changedPropertyNames, 
		TProperties 
properties
)
JavaScript

Microsoft.Rtc.Collaboration.PropertiesChangedEventArgs = 
function(
changedPropertyNames, 
properties);

Parameters

changedPropertyNames
Type: IEnumerable < (Of < ( String > ) > )
A list of changed property names.
properties
Type: TProperties
The current values of the properties.

See Also