AngleSharp by AngleSharp

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

 ResourceRequest

public class ResourceRequest
Represents the arguments to load a resource.
public bool IsCookieBlocked { get; set; }

Gets or sets if the block cookies flag is active.

public bool IsCredentialOmitted { get; set; }

Gets or sets if the omit credentials flag is active.

public bool IsManualRedirectDesired { get; set; }

Gets or sets if the manual redirect flag is active.

public bool IsSameOriginForced { get; set; }

Gets or sets if the force same origin flag is active.

public string Origin { get; set; }

Gets or sets the origin of the request, if any.

public IElement Source { get; }

Gets the source of the request.

public Url Target { get; }

Gets the target of the request.

public ResourceRequest(IElement source, Url target)

Creates a new resource request for the given url.