Call.HandleStateChange(CallStateChangedEventArgs) Method
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.
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
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.