Table of Contents
WebView.LoadUrl Method (String, Boolean)

Loads a Url into this WebView with option to skip cache.

Syntax
 public NavigationTask LoadUrl(
   string url,
   bool skipCache
);

Parameters

url
The Url to be loaded.
skipCache
Set to true to skip cache.
Remarks

The call returns immediately. You can use the returned NavigationTask object to wait for the page to finish loading.

See Also