AngleSharp by AngleSharp

<PackageReference Include="AngleSharp" Version="0.17.0-alpha-173" />

.NET API 881,664 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; using System.Runtime.CompilerServices; namespace AngleSharp.Dom { [System.Runtime.CompilerServices.NullableContext(1)] [DomName("Location")] public interface ILocation : IUrlUtilities { [DomName("assign")] void Assign(string url); [DomName("replace")] void Replace(string url); [DomName("reload")] void Reload(); } }