PreviewTeamView.SystemStateChanged Event
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.
The session availability has changed.
// Register
event_token SystemStateChanged(TypedEventHandler<PreviewTeamView, IInspectable const&> const& handler) const;
// Revoke with event_token
void SystemStateChanged(event_token const* cookie) const;
// Revoke with event_revoker
PreviewTeamView::SystemStateChanged_revoker SystemStateChanged(auto_revoke_t, TypedEventHandler<PreviewTeamView, IInspectable const&> const& handler) const;
public event TypedEventHandler<PreviewTeamView,object> SystemStateChanged;
function onSystemStateChanged(eventArgs) { /* Your code */ }
previewTeamView.addEventListener("systemstatechanged", onSystemStateChanged);
previewTeamView.removeEventListener("systemstatechanged", onSystemStateChanged);
- or -
previewTeamView.onsystemstatechanged = onSystemStateChanged;
Public Custom Event SystemStateChanged As TypedEventHandler(Of PreviewTeamView, Object)
Event Type
TypedEventHandler<PreviewTeamView,IInspectable>
Remarks
Ensure that the system is in the ready state for a call.