Raised to notify an application that the recorder's state has changed.

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

Syntax

Visual Basic (Declaration)
Public Event 
StateChanged 
As 
EventHandler(
Of 

RecorderStateChangedEventArgs)
C#
public event 
EventHandler<

RecorderStateChangedEventArgs> 
StateChanged
Visual C++
public:
 
event 
EventHandler<

RecorderStateChangedEventArgs^>^ 
StateChanged {
	
void 
add (
EventHandler<

RecorderStateChangedEventArgs^>^ 
value);
	
void 
remove (
EventHandler<

RecorderStateChangedEventArgs^>^ 
value);
}
JavaScript
function add_
stateChanged(
value);
function remove_
stateChanged(
value);

Remarks

This event is raised for every state change that occurs on the recorder, including when the application causes the state change.

See Also