Skip to main content

Enum UpdateState

Enumeration of the state of the IUpdateService

Assembly: Meadow.Contracts.dll
View Source
Declaration
public enum UpdateState

Fields

Dead

The service is not running (either not started, forcibly stopped, or in a unrecoverable failed state)

View Source
Declaration
Dead = 0

Disconnected

The service is not currently connected to a server

View Source
Declaration
Disconnected = 1

Authenticating

the service is authenticating with the server

View Source
Declaration
Authenticating = 2

Connecting

The service is connecting to the server

View Source
Declaration
Connecting = 3

Connected

The service is connected to the server

View Source
Declaration
Connected = 4

Idle

The service is connected and idle, waiting on server state notifications

View Source
Declaration
Idle = 5

UpdateAvailable

An update is currently available on the server

View Source
Declaration
UpdateAvailable = 6

DownloadingFile

An update package is actively being downloaded

View Source
Declaration
DownloadingFile = 7

UpdateInProgress

An update package is in the process of being applied

View Source
Declaration
UpdateInProgress = 8