Table of Contents
WebView.Download Method 

Download a Url and save the result to a temporary file.

Syntax
 public string Download(
   string url,
   string filePath = null
);

Parameters

url
The Url to be downloaded.
filePath
The result file. Pass null to this argument to automatically creates a temporary file.

Return Value

The full path of the result file. You are responsible to delete this file when it's no longer needed.

See Also