AngleSharp by AngleSharp

<PackageReference Include="AngleSharp" Version="0.13.0-alpha-734" />

.NET API 820,224 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(); } }