Initializes a new instance of the class to be used for a normal state changed event. The caller should provide both old and new states to indicate the transition.

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

Syntax

Visual Basic (Declaration)
Public 
Sub 
New ( _
	
previousState 
As T, _
	
state 
As T _
)
C#
public 
StateChangedEventArgs(
		T 
previousState,
		T 
state
)
Visual C++
public:
StateChangedEventArgs(
		T 
previousState, 
		T 
state
)
JavaScript

Microsoft.Rtc.Signaling.StateChangedEventArgs = 
function(
previousState, 
state);

Parameters

previousState
Type: T
The original state.
state
Type: T
The new state.

See Also