WebBrowser.GoBack 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 back to the previous document, if there is one.
public:
void GoBack();
[System.Security.SecurityCritical]
public void GoBack ();
public void GoBack ();
[<System.Security.SecurityCritical>]
member this.GoBack : unit -> unit
member this.GoBack : unit -> unit
Public Sub GoBack ()
- Attributes
Exceptions
The WebBrowser instance is no longer valid.
A reference to the underlying native WebBrowser
could not be retrieved.
There is no document to navigate back to.
Examples
The following example shows how to navigate back to the previous HTML document by calling GoBack. The example first checks that there are HTML documents to navigate back to by checking CanGoBack.
private void backButton_Click(object sender, RoutedEventArgs e)
{
// Navigate to the previous HTML document, if there is one
if (this.webBrowser.CanGoBack)
{
this.webBrowser.GoBack();
}
}
Remarks
If you call GoBack and there are not any documents to navigate back to, WebBrowser does not perform a navigation and an exception is thrown. If you need to, you can inspect the value of the CanGoBack property to determine whether there are documents to navigate back to.