Class DownloadPart
Downloads may be split into one or more parts. This class includes the zero-based part Number which specifies the order in which this part will be assembled back into the reconsitituted download. The class also includes the Uri used to retrieve the part, the part Size, as well as the optional Md5 has for the part.
Namespace: Neon.Deployment
Assembly: Neon.Common.dll
Syntax
public class DownloadPart
Constructors
DownloadPart()
Default constructor.
Declaration
public DownloadPart()
Properties
Md5
Optionally set to the MD5 hash of the part data (without any compression).
Declaration
public string Md5 { get; set; }
Property Value
Type | Description |
---|---|
string |
Number
The zero-based index specifying where this part will be assembled back into the reconsitituted download.
Declaration
public int Number { get; set; }
Property Value
Type | Description |
---|---|
int |
Size
Actual size of the part in bytes after being downloaded.
Declaration
public long Size { get; set; }
Property Value
Type | Description |
---|---|
long |
Uri
The URI to the part data.
Declaration
public string Uri { get; set; }
Property Value
Type | Description |
---|---|
string |