AngleSharp by AngleSharp

<PackageReference Include="AngleSharp" Version="1.2.0-beta.457" />

.NET API 957,952 bytes

 ICookieProvider

public interface ICookieProvider
Defines methods to retrieve and store cookies.
using AngleSharp.Dom; using System.Runtime.CompilerServices; namespace AngleSharp.Io { [System.Runtime.CompilerServices.NullableContext(1)] public interface ICookieProvider { string GetCookie(Url url); void SetCookie(Url url, string value); } }