Table of Contents
WebView.ShouldForceDownload Event

Occurs for every response once the MIME type is known to allow user to force the request as a download.

Syntax
 public event ShouldForceDownloadHandler ShouldForceDownload;
Event Data

The event handler receives an argument of type ShouldForceDownloadEventArgs containing data related to this event. The following ShouldForceDownloadEventArgs properties provide information specific to this event.

Name Description
ForceDownload Gets or sets a value indicating whether this response should be treated as a download.
MimeType Gets the response MIME type.
Url Gets the request Url.
See Also