StateChangedEventArgs<T>(T, T) Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.
public:
StateChangedEventArgs(T previousState, T state);
public StateChangedEventArgs (T previousState, T state);
new Microsoft.Rtc.Signaling.StateChangedEventArgs<'T> : 'T * 'T -> Microsoft.Rtc.Signaling.StateChangedEventArgs<'T>
Public Sub New (previousState As T, state As T)
Parameters
- previousState
- T
The original state.
- state
- T
The new state.