Delegate DownloadProgressDelegate
Describes the callback used to monitor and possibly cancel the download of file composed of one or more parts specified by a DownloadManifest.
Namespace: Neon.Deployment
Assembly: Neon.Common.dll
Syntax
public delegate bool DownloadProgressDelegate(DownloadProgressType progressType, int percentComplete)
Parameters
| Type | Name | Description |
|---|---|---|
| DownloadProgressType | progressType | Passed indicating the current operation being performed. |
| int | percentComplete | Passed as the approximate percentage of the file downloaded (between 0..100). |
Returns
| Type | Description |
|---|---|
| bool |
|