WebBrowser.NavigateToString(String) Method

Definition

Navigate asynchronously to a String that contains the content for a document.

C#
public void NavigateToString(string text);

Parameters

text
String

The String that contains the content for a document.

Exceptions

The WebBrowser instance is no longer valid.

A reference to the underlying native WebBrowser could not be retrieved.

Examples

The following example shows how to navigate to a string that contains a document.

C#
private void goNavigateToStringButton_Click(object sender, RoutedEventArgs e)  
{  
  // Load HTML document as a string  
  Uri uri = new Uri(@"pack://application:,,,/HTMLDocumentWithoutScript.html", UriKind.Absolute);  
  Stream stream = Application.GetResourceStream(uri).Stream;  
  using (StreamReader reader = new StreamReader(stream))  
  {  
    // Navigate to HTML document string  
    this.webBrowser.NavigateToString(reader.ReadToEnd());  
  }  
}  

Remarks

If the text parameter is null, WebBrowser navigates to a blank document ("about:blank").

If the text parameter is not in valid HTML format, it will be displayed as plain text.

After navigation, Source will be null.

Applies to

Producto Versiones
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

See also