Table of Contents
WebViewExtensions.LoadRequestAsync Method 

Asynchronously loads a Request into the WebView.

Syntax
 public static Task<T> LoadRequestAsync(
   WebView webView,
   Request request,
   bool skipCache = false,
   CancellationToken cancellationToken = default
);

Parameters

webView
The WebView object.
request
The request 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