ILocation
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();
}
}