AngleSharp by Florian Rappl

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

 Request

sealed class Request : IRequest
The default HTTP request encapsulation type.
using System.Collections.Generic; using System.IO; namespace AngleSharp.Network.Default { internal sealed class Request : IRequest { public HttpMethod Method { get; set; } public Url Address { get; set; } public Dictionary<string, string> Headers { get; set; } public Stream Content { get; set; } public Request() { Headers = new Dictionary<string, string>(); } } }