AngleSharp by AngleSharp

<PackageReference Include="AngleSharp" Version="0.9.2" />

.NET API 1,213,440 bytes

 IHistory

public interface IHistory
The History interface allows to manipulate the browser session history, that is the pages visited in the tab or frame that the current page is loaded in.
using AngleSharp.Attributes; namespace AngleSharp.Dom { [DomName("History")] public interface IHistory { [DomName("length")] int Length { get; } [DomName("state")] object State { get; } [DomName("go")] void Go(int delta = 0); [DomName("back")] void Back(); [DomName("forward")] void Forward(); [DomName("pushState")] void PushState(object data, string title, string url = null); [DomName("replaceState")] void ReplaceState(object data, string title, string url = null); } }