Class DownloadManifest
Describes a download including its parts
Namespace: Neon.Deployment
Assembly: Neon.Common.dll
Syntax
public class DownloadManifest
Constructors
DownloadManifest()
Default constructor.
Declaration
public DownloadManifest()
Properties
Filename
The download file name.
Declaration
public string Filename { get; set; }
Property Value
Type | Description |
---|---|
string |
Md5
The MD5 hash for the entire download.
Declaration
public string Md5 { get; set; }
Property Value
Type | Description |
---|---|
string |
Name
Identifies the download.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
string |
Parts
The download parts.
Declaration
public List<DownloadPart> Parts { get; set; }
Property Value
Type | Description |
---|---|
List<DownloadPart> |
Size
The overall size of the download.
Declaration
public long Size { get; set; }
Property Value
Type | Description |
---|---|
long |
Version
The download version (this may be null
).
Declaration
public string Version { get; set; }
Property Value
Type | Description |
---|---|
string |