Compartir a través de


AppBroadcastingMonitor.IsCurrentAppBroadcastingChanged Evento

Definición

Se produce cuando cambia el estado de difusión actual de la aplicación actual.

// 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 de evento

Comentarios

En el controlador de este evento, compruebe la propiedad IsCurrentAppBroadcasting del objeto AppBroadcastingMonitor pasado como remitente del evento para determinar si la aplicación actual está transmitiendo actualmente.

Se aplica a