WebBrowser.NavigateToStream(Stream) Method

Definition

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

public void NavigateToStream (System.IO.Stream stream);

Parameters

stream
Stream

The Stream 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 stream that contains a document.

private void goNavigateToStreamButton_Click(object sender, RoutedEventArgs e)  
{  
  // Load HTML document as a stream  
  Uri uri = new Uri(@"pack://application:,,,/HTMLDocumentWithScript.html", UriKind.Absolute);  
  Stream source = Application.GetResourceStream(uri).Stream;  

  // Navigate to HTML document stream  
  this.webBrowser.NavigateToStream(source);  
}  

Remarks

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

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

After navigation, Source will be null.

Applies to

Produk Versi
.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

See also