Class DownloadProgressEventArgs
Fired when download makes progress. Last call has |done| == true. Deprecated. Use Browser.downloadProgress instead.
public sealed class DownloadProgressEventArgs : EventArgs
- Inheritance
-
DownloadProgressEventArgs
- Inherited Members
Properties
Guid
Global unique identifier of the download.
[JsonPropertyName("guid")]
public string Guid { get; set; }
Property Value
ReceivedBytes
Total bytes received.
[JsonPropertyName("receivedBytes")]
public double ReceivedBytes { get; set; }
Property Value
State
Download status.
[JsonPropertyName("state")]
public string State { get; set; }
Property Value
TotalBytes
Total expected bytes to download.
[JsonPropertyName("totalBytes")]
public double TotalBytes { get; set; }