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