AngleSharp by AngleSharp

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

 IRequest

public interface IRequest
Specifies what is used for requesting data.
using System.Collections.Generic; using System.IO; namespace AngleSharp.Network { public interface IRequest { HttpMethod Method { get; } Url Address { get; } IDictionary<string, string> Headers { get; } Stream Content { get; } } }