Enum DeviceWatcherStatus
- Namespace
- nanoFramework.Tools.Debugger
- Assembly
- nanoFramework.Tools.DebugLibrary.Net.dll
public enum DeviceWatcherStatus
Fields
Aborted = 5The watcher has aborted operation. No subsequent events will be raised.
Created = 0This is the initial state of a Watcher object. During this state clients can register event handlers.
EnumerationCompleted = 2The watcher has completed enumerating the initial collection. Items can still be added, updated or removed from the collection.
Started = 1The 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 Updated and Removed notifications but only to items that have already been Added.
Stopped = 4The client has called Stop and the watcher has completed all outstanding events. No further events will be raised.
Stopping = 3The client has called Stop and the watcher is still in the process of stopping. Events may still be raised.