AngleSharp by AngleSharp

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

.NET API 1,224,192 bytes

 ILocation

public interface ILocation : IUrlUtilities
The Location interface represents the location of the object it is linked to. Changes done on it are reflected on the object it relates to.
using AngleSharp.Attributes; namespace AngleSharp.Dom { [DomName("Location")] public interface ILocation : IUrlUtilities { [DomName("assign")] void Assign(string url); [DomName("replace")] void Replace(string url); [DomName("reload")] void Reload(); } }