AppBroadcastBackgroundService.BroadcastChannelChanged Evento
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Si verifica quando il valore della proprietà BroadcastChannel cambia.
// Register
event_token BroadcastChannelChanged(TypedEventHandler<AppBroadcastBackgroundService, IInspectable const&> const& handler) const;
// Revoke with event_token
void BroadcastChannelChanged(event_token const* cookie) const;
// Revoke with event_revoker
AppBroadcastBackgroundService::BroadcastChannelChanged_revoker BroadcastChannelChanged(auto_revoke_t, TypedEventHandler<AppBroadcastBackgroundService, IInspectable const&> const& handler) const;
public event TypedEventHandler<AppBroadcastBackgroundService,object> BroadcastChannelChanged;
function onBroadcastChannelChanged(eventArgs) { /* Your code */ }
appBroadcastBackgroundService.addEventListener("broadcastchannelchanged", onBroadcastChannelChanged);
appBroadcastBackgroundService.removeEventListener("broadcastchannelchanged", onBroadcastChannelChanged);
- or -
appBroadcastBackgroundService.onbroadcastchannelchanged = onBroadcastChannelChanged;
Public Custom Event BroadcastChannelChanged As TypedEventHandler(Of AppBroadcastBackgroundService, Object)
Tipo evento
TypedEventHandler<AppBroadcastBackgroundService,IInspectable>
Requisiti Windows
Famiglia di dispositivi |
Windows Desktop Extension SDK (è stato introdotto in 10.0.16299.0)
|
API contract |
Windows.Media.Capture.AppBroadcastContract (è stato introdotto in v2.0)
|