Condividi tramite


AppBroadcastingMonitor.IsCurrentAppBroadcastingChanged Evento

Definizione

Si verifica quando lo stato di trasmissione corrente dell'app corrente cambia.

// Register
event_token IsCurrentAppBroadcastingChanged(TypedEventHandler<AppBroadcastingMonitor, IInspectable const&> const& handler) const;

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

// Revoke with event_revoker
AppBroadcastingMonitor::IsCurrentAppBroadcastingChanged_revoker IsCurrentAppBroadcastingChanged(auto_revoke_t, TypedEventHandler<AppBroadcastingMonitor, IInspectable const&> const& handler) const;
public event TypedEventHandler<AppBroadcastingMonitor,object> IsCurrentAppBroadcastingChanged;
function onIsCurrentAppBroadcastingChanged(eventArgs) { /* Your code */ }
appBroadcastingMonitor.addEventListener("iscurrentappbroadcastingchanged", onIsCurrentAppBroadcastingChanged);
appBroadcastingMonitor.removeEventListener("iscurrentappbroadcastingchanged", onIsCurrentAppBroadcastingChanged);
- or -
appBroadcastingMonitor.oniscurrentappbroadcastingchanged = onIsCurrentAppBroadcastingChanged;
Public Custom Event IsCurrentAppBroadcastingChanged As TypedEventHandler(Of AppBroadcastingMonitor, Object) 

Tipo evento

Commenti

Nel gestore per questo evento controllare la proprietà IsCurrentAppBroadcasting dell'oggetto AppBroadcastingMonitor passato come mittente dell'evento per determinare se l'app corrente è attualmente in trasmissione.

Si applica a