Class DownloadWillBeginEventArgs
Fired when page is about to start a download. Deprecated. Use Browser.downloadWillBegin instead.
public sealed class DownloadWillBeginEventArgs : EventArgs
- Inheritance
-
DownloadWillBeginEventArgs
- Inherited Members
Properties
FrameId
Id of the frame that caused download to begin.
[JsonPropertyName("frameId")]
public string FrameId { get; set; }
Property Value
Guid
Global unique identifier of the download.
[JsonPropertyName("guid")]
public string Guid { get; set; }
Property Value
SuggestedFilename
Suggested file name of the resource (the actual name of the file saved on disk may differ).
[JsonPropertyName("suggestedFilename")]
public string SuggestedFilename { get; set; }
Property Value
Url
URL of the resource being downloaded.
[JsonPropertyName("url")]
public string Url { get; set; }