AppBroadcastState.PlugInStateChanged Event

Definition

Occurs when the state of the plugin associated with the app broadcast state changes.

// Register
event_token PlugInStateChanged(TypedEventHandler<AppBroadcastState, AppBroadcastPlugInStateChangedEventArgs const&> const& handler) const;

// Revoke with event_token
void PlugInStateChanged(event_token const* cookie) const;

// Revoke with event_revoker
AppBroadcastState::PlugInStateChanged_revoker PlugInStateChanged(auto_revoke_t, TypedEventHandler<AppBroadcastState, AppBroadcastPlugInStateChangedEventArgs const&> const& handler) const;
public event TypedEventHandler<AppBroadcastState,AppBroadcastPlugInStateChangedEventArgs> PlugInStateChanged;
function onPlugInStateChanged(eventArgs) { /* Your code */ }
appBroadcastState.addEventListener("pluginstatechanged", onPlugInStateChanged);
appBroadcastState.removeEventListener("pluginstatechanged", onPlugInStateChanged);
- or -
appBroadcastState.onpluginstatechanged = onPlugInStateChanged;
Public Custom Event PlugInStateChanged As TypedEventHandler(Of AppBroadcastState, AppBroadcastPlugInStateChangedEventArgs) 

Event Type

Windows requirements

App capabilities
appBroadcast appBroadcastSettings

Applies to