AppBroadcastState.PlugInStateChanged 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.
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
|