PerceptionInfraredFrameSourceWatcher.SourceAdded 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.
Subscribes to the SourceAdded event.
// Register
event_token SourceAdded(TypedEventHandler<PerceptionInfraredFrameSourceWatcher, PerceptionInfraredFrameSourceAddedEventArgs const&> const& handler) const;
// Revoke with event_token
void SourceAdded(event_token const* cookie) const;
// Revoke with event_revoker
PerceptionInfraredFrameSourceWatcher::SourceAdded_revoker SourceAdded(auto_revoke_t, TypedEventHandler<PerceptionInfraredFrameSourceWatcher, PerceptionInfraredFrameSourceAddedEventArgs const&> const& handler) const;
/// [add: Windows.Foundation.Metadata.Deprecated("PerceptionInfraredFrameSourceWatcher may be unavailable after Windows Creator Update. Use Windows.Devices.Enumeration.DeviceWatcher instead.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 262144, "Windows.Foundation.UniversalApiContract")]
/// [remove: Windows.Foundation.Metadata.Deprecated("PerceptionInfraredFrameSourceWatcher may be unavailable after Windows Creator Update. Use Windows.Devices.Enumeration.DeviceWatcher instead.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 262144, "Windows.Foundation.UniversalApiContract")]
// Register
event_token SourceAdded(TypedEventHandler<PerceptionInfraredFrameSourceWatcher, PerceptionInfraredFrameSourceAddedEventArgs const&> const& handler) const;
// Revoke with event_token
void SourceAdded(event_token const* cookie) const;
// Revoke with event_revoker
PerceptionInfraredFrameSourceWatcher::SourceAdded_revoker SourceAdded(auto_revoke_t, TypedEventHandler<PerceptionInfraredFrameSourceWatcher, PerceptionInfraredFrameSourceAddedEventArgs const&> const& handler) const;
public event TypedEventHandler<PerceptionInfraredFrameSourceWatcher,PerceptionInfraredFrameSourceAddedEventArgs> SourceAdded;
[add: Windows.Foundation.Metadata.Deprecated("PerceptionInfraredFrameSourceWatcher may be unavailable after Windows Creator Update. Use Windows.Devices.Enumeration.DeviceWatcher instead.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 262144, "Windows.Foundation.UniversalApiContract")]
[remove: Windows.Foundation.Metadata.Deprecated("PerceptionInfraredFrameSourceWatcher may be unavailable after Windows Creator Update. Use Windows.Devices.Enumeration.DeviceWatcher instead.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 262144, "Windows.Foundation.UniversalApiContract")]
public event TypedEventHandler<PerceptionInfraredFrameSourceWatcher,PerceptionInfraredFrameSourceAddedEventArgs> SourceAdded;
function onSourceAdded(eventArgs) { /* Your code */ }
perceptionInfraredFrameSourceWatcher.addEventListener("sourceadded", onSourceAdded);
perceptionInfraredFrameSourceWatcher.removeEventListener("sourceadded", onSourceAdded);
- or -
perceptionInfraredFrameSourceWatcher.onsourceadded = onSourceAdded;
Public Custom Event SourceAdded As TypedEventHandler(Of PerceptionInfraredFrameSourceWatcher, PerceptionInfraredFrameSourceAddedEventArgs)
Event Type
- Attributes
Remarks
When the Start method is called, this event is fired for every infrared frame source already known to the system, then the EnumerationCompleted event is fired. New infrared frame sources that are subsequently added will trigger additional SourceAdded events.