Provides data for the WebBrowser.Navigated event.
See Also: WebBrowserNavigatedEventArgs Members
Handle the WebBrowser.Navigated event to receive notification when the System.Windows.Forms.WebBrowser control has navigated to a new document. The System.Windows.Forms.WebBrowserNavigatedEventArgs object passed to the event handler lets you retrieve the location of the new document through the WebBrowserNavigatedEventArgs.Url property. When the WebBrowser.Navigated event occurs, the new document has begun loading, which means you can access some of its content through the WebBrowser.Document, WebBrowser.DocumentText, or WebBrowser.DocumentStream property.