Class UpdateInfo
Represents information about a specific Meadow Update package
Assembly: Meadow.Contracts.dll
View Source
public class UpdateInfo
Derived:
Meadow.Update.UpdateMessage
Properties
PublishedOn
Date and time when the update was published
View Source
public DateTime PublishedOn { get; set; }
ID
A unique identifier for the Update
View Source
public string ID { get; protected set; }
UpdateType
The type of the Update
View Source
public UpdateType UpdateType { get; set; }
Version
Version information for the Update
View Source
public string Version { get; set; }
DownloadSize
The size, in bytes, of the Update
View Source
public long DownloadSize { get; set; }
Summary
An optional, human-readable summary of the Update
View Source
public string? Summary { get; set; }
Detail
An optional, human-readable detail of the Update
View Source
public string? Detail { get; set; }
Retrieved
Indicates if the Update has been retrieved
View Source
public bool Retrieved { get; set; }
Applied
Indicates if the Update has been applied
View Source
public bool Applied { get; set; }
DownloadHash
The expected Hash of the Update package
View Source
public string DownloadHash { get; set; }
Metadata
Metadata for the package
View Source
public string? Metadata { get; set; }