次の方法で共有


AppBroadcastingMonitor.IsCurrentAppBroadcastingChanged イベント

定義

現在のアプリの現在のブロードキャスト状態が変更されたときに発生します。

// 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) 

イベントの種類

注釈

このイベントのハンドラーで、イベント送信者として渡された AppBroadcastingMonitor オブジェクトの IsCurrentAppBroadcasting プロパティをチェックして、現在のアプリが現在ブロードキャストされているかどうかを判断します。

適用対象