Table of Contents
WebViewExtensions.LoadHtmlAsync Method 

Asynchronously loads raw HTML into the WebView.

Syntax
 public static Task<T> LoadHtmlAsync(
   WebView webView,
   string html,
   string baseUrl = null,
   CancellationToken cancellationToken = default
);

Parameters

webView
The WebView object.
html
The HTML to be loaded.
baseUrl
The base Url.
cancellationToken
The token to monitor for cancellation requests. The default value is None.

Return Value

A task that represents the asynchronous operation.

See Also