AppBroadcastingMonitor.IsCurrentAppBroadcastingChanged 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 current broadcasting state of the current app changes.
// 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)
Event Type
TypedEventHandler<AppBroadcastingMonitor,IInspectable>
Remarks
In the handler for this event, check the IsCurrentAppBroadcasting property of the AppBroadcastingMonitor object passed as the event sender to determine if the current app is currently broadcasting.