Table of Contents

Class Cookie

Namespace
OpenQA.Selenium.BiDi.Modules.Network
Assembly
WebDriver.dll
public record Cookie : IEquatable<Cookie>
Inheritance
Cookie
Implements
Inherited Members

Constructors

public Cookie(string Name, BytesValue Value, string Domain, string Path, long Size, bool HttpOnly, bool Secure, SameSite SameSite)

Parameters

Name string
Value BytesValue
Domain string
Path string
Size long
HttpOnly bool
Secure bool
SameSite SameSite

Properties

public string Domain { get; init; }

Property Value

string
[JsonInclude]
public DateTimeOffset? Expiry { get; }

Property Value

DateTimeOffset?
public bool HttpOnly { get; init; }

Property Value

bool
public string Name { get; init; }

Property Value

string
public string Path { get; init; }

Property Value

string
public SameSite SameSite { get; init; }

Property Value

SameSite
public bool Secure { get; init; }

Property Value

bool
public long Size { get; init; }

Property Value

long
public BytesValue Value { get; init; }

Property Value

BytesValue