AppBroadcastState.CaptureTargetClosed 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 capture target is closed.
// Register
event_token CaptureTargetClosed(TypedEventHandler<AppBroadcastState, IInspectable const&> const& handler) const;
// Revoke with event_token
void CaptureTargetClosed(event_token const* cookie) const;
// Revoke with event_revoker
AppBroadcastState::CaptureTargetClosed_revoker CaptureTargetClosed(auto_revoke_t, TypedEventHandler<AppBroadcastState, IInspectable const&> const& handler) const;
public event TypedEventHandler<AppBroadcastState,object> CaptureTargetClosed;
function onCaptureTargetClosed(eventArgs) { /* Your code */ }
appBroadcastState.addEventListener("capturetargetclosed", onCaptureTargetClosed);
appBroadcastState.removeEventListener("capturetargetclosed", onCaptureTargetClosed);
- or -
appBroadcastState.oncapturetargetclosed = onCaptureTargetClosed;
Public Custom Event CaptureTargetClosed As TypedEventHandler(Of AppBroadcastState, Object)
Event Type
TypedEventHandler<AppBroadcastState,IInspectable>
Windows requirements
App capabilities |
appBroadcast
appBroadcastSettings
|