HtmlHistory Class
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.
Manages the list of documents and Web sites the user has visited within the current session.
public ref class HtmlHistory sealed : IDisposable
public sealed class HtmlHistory : IDisposable
type HtmlHistory = class
interface IDisposable
Public NotInheritable Class HtmlHistory
Implements IDisposable
- Inheritance
-
HtmlHistory
- Implements
Remarks
The managed HTML Document Object Model (DOM) keeps track of the sites that a user has visited within a given session. A session is defined as the length of time from when an application hosting the managed HTML DOM starts until the application closes.
When you use the Url property or Navigate method of the WebBrowser control to navigate to a new Web page, Internet Explorer may either retrieve the latest version of that page from the server or display the version that is currently in the Internet Explorer cache. By contrast, when you use HtmlHistory to navigate forward and backward in this stack, Internet Explorer will display the pages from the local computer's cache of downloaded Web content, unless the server indicates that the document's content should expire immediately. For more information on the history list and caching in Internet Explorer, see How To Prevent Caching in Internet Explorer.
The principal method of HtmlHistory is Go, which navigates either to the specified position in the navigation stack or to a new Uniform Resource Locator (URL). The Forward and Back methods navigate down and up the navigation stack, respectively, by the required number of entries.
Properties
DomHistory |
Gets the unmanaged interface wrapped by this class. |
Length |
Gets the size of the history stack. |
Methods
Back(Int32) |
Navigates backward in the navigation stack by the specified number of entries. |
Dispose() |
Releases all resources used by the HtmlHistory. |
Equals(Object) |
Determines whether the specified object is equal to the current object. (Inherited from Object) |
Forward(Int32) |
Navigates forward in the navigation stack by the specified number of entries. |
GetHashCode() |
Serves as the default hash function. (Inherited from Object) |
GetType() |
Gets the Type of the current instance. (Inherited from Object) |
Go(Int32) |
Navigates to the specified relative position in the browser's history. |
Go(String) |
Navigates to the specified Uniform Resource Locator (URL). |
Go(Uri) |
Navigates to the specified Uniform Resource Locator (URL). |
MemberwiseClone() |
Creates a shallow copy of the current Object. (Inherited from Object) |
ToString() |
Returns a string that represents the current object. (Inherited from Object) |