SysHolographicDisplayWatcherStatus Enum

Definition

Describes the state of a SysHolographicDisplayWatcher object.

Important

This API is available only to components of the Windows operating system. Calls to these APIs will fail at runtime for all other processes. These APIs may be modified or removed in future Windows releases.

public enum class SysHolographicDisplayWatcherStatus
/// [Windows.Foundation.Metadata.ContractVersion(Windows.System.Implementation.Holographic.HoloSysImplementationContract, 65536)]
enum class SysHolographicDisplayWatcherStatus
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.System.Implementation.Holographic.HoloSysImplementationContract), 65536)]
public enum SysHolographicDisplayWatcherStatus
var value = Windows.System.Implementation.Holographic.SysHolographicDisplayWatcherStatus.created
Public Enum SysHolographicDisplayWatcherStatus
Inheritance
SysHolographicDisplayWatcherStatus
Attributes

Windows requirements

Device family
Windows Holographic System Implementation Extension SDK (introduced in 10.0.17763.0)
API contract
Windows.System.Implementation.Holographic.HoloSysImplementationContract (introduced in v1.0)

Fields

Aborted 5

The watcher has aborted operation. No subsequent events will be raised.

Created 0

This is the initial state of a watcher object. During this state clients can register event handlers.

EnumerationCompleted 2

The watcher has completed enumerating the initial collection. Items can still be added, updated or removed from the collection.

Started 1

The watcher transitions to the Started state once Start is called. The watcher is enumerating the initial collection. Note that during this enumeration phase it is possible to receive Removed notifications but only to items that have already been Added.

Stopped 4

The client has called Stop and the watcher has completed all outstanding events. No further events will be raised.

Stopping 3

The client has called Stop and the watcher is still in the process of stopping. Events may still be raised.

Applies to