IWebViewControl.NavigateToString(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Loads the specified HTML content as a new document.
public:
void NavigateToString(Platform::String ^ text);
void NavigateToString(winrt::hstring const& text);
public void NavigateToString(string text);
function navigateToString(text)
Public Sub NavigateToString (text As String)
Parameters
- text
-
String
Platform::String
winrt::hstring
The HTML content to display in the IWebViewControl.
Remarks
NavigateToString is asynchronous. Use the NavigationCompleted event to detect when navigation has completed.
NavigateToString supports content with references to external files such as CSS, scripts, images, and fonts. However, it does not provide a way to generate or provide these resources programmatically. NavigateToLocalStreamUri provide this support instead.