AngleSharp by AngleSharp

<PackageReference Include="AngleSharp" Version="1.0.0-alpha-229" />

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