Table of Contents
WebViewExtensions.LoadUrlAsync Method 

Asynchronously loads a Url into the WebView.

Syntax
 public static Task<T> LoadUrlAsync(
   WebView webView,
   string url,
   bool skipCache = false,
   CancellationToken cancellationToken = default
);

Parameters

webView
The WebView object.
url
The Url to be loaded.
skipCache
Set to true to skip cache.
cancellationToken
The token to monitor for cancellation requests. The default value is None.

Return Value

A task that represents the asynchronous operation.

See Also