Table of Contents

Class DeviceBoundSessionCookieCraving

Namespace
Selenium.WebDriver.BiDi.Cdp.Network
Assembly
Selenium.WebDriver.BiDi.Cdp.dll

A device bound session's cookie craving.

public sealed record DeviceBoundSessionCookieCraving : IEquatable<DeviceBoundSessionCookieCraving>
Inheritance
DeviceBoundSessionCookieCraving
Implements
Inherited Members

Constructors

DeviceBoundSessionCookieCraving(string, string, string, bool, bool)

A device bound session's cookie craving.

public DeviceBoundSessionCookieCraving(string Name, string Domain, string Path, bool Secure, bool HttpOnly)

Parameters

Name string

The name of the craving.

Domain string

The domain of the craving.

Path string

The path of the craving.

Secure bool

The Secure attribute of the craving attributes.

HttpOnly bool

The HttpOnly attribute of the craving attributes.

Properties

Domain

The domain of the craving.

public string Domain { get; init; }

Property Value

string

HttpOnly

The HttpOnly attribute of the craving attributes.

public bool HttpOnly { get; init; }

Property Value

bool

Name

The name of the craving.

public string Name { get; init; }

Property Value

string

Path

The path of the craving.

public string Path { get; init; }

Property Value

string

SameSite

The SameSite attribute of the craving attributes.

public CookieSameSite? SameSite { get; init; }

Property Value

CookieSameSite?

Secure

The Secure attribute of the craving attributes.

public bool Secure { get; init; }

Property Value

bool