WebBrowser.NavigateToString(String) Method

Definition

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

public:
 void NavigateToString(System::String ^ text);
public void NavigateToString (string text);
member this.NavigateToString : string -> unit
Public Sub NavigateToString (text As String)

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.

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

See also