Call.HandleStateChange(CallStateChangedEventArgs) Method

Definition

Indicates a state change in an instance of a class derived from the Call class.

protected:
 virtual void HandleStateChange(Microsoft::Rtc::Collaboration::CallStateChangedEventArgs ^ e);
protected virtual void HandleStateChange (Microsoft.Rtc.Collaboration.CallStateChangedEventArgs e);
abstract member HandleStateChange : Microsoft.Rtc.Collaboration.CallStateChangedEventArgs -> unit
override this.HandleStateChange : Microsoft.Rtc.Collaboration.CallStateChangedEventArgs -> unit
Protected Overridable Sub HandleStateChange (e As CallStateChangedEventArgs)

Parameters

e
CallStateChangedEventArgs

The strongly typed event argument created for handling the state changed operation. The derived class is expected to downcast the right generic type and expose the event.

Remarks

This allows a derived class to be notified of a state change before a public event is raised. The derived class must override this method and should not make any blocking calls in it.

Applies to