WebBrowser.NavigateToStream(Stream) 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.
Navigate asynchronously to a Stream that contains the content for a document.
public:
void NavigateToStream(System::IO::Stream ^ stream);
public void NavigateToStream (System.IO.Stream stream);
member this.NavigateToStream : System.IO.Stream -> unit
Public Sub NavigateToStream (stream As Stream)
Parameters
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
.