Table of Contents

Class DeleteCookiesRequest

Namespace
PuppeteerSharp
Assembly
PuppeteerSharp.dll

Request to delete cookies matching specific filters.

public class DeleteCookiesRequest
Inheritance
DeleteCookiesRequest

Properties

Domain

Gets or sets the domain. If specified, deletes only cookies with the exact domain.

public string Domain { get; set; }

Property Value

string

Name

Gets or sets the name of the cookies to remove.

public string Name { get; set; }

Property Value

string

PartitionKey

Gets or sets the partition key. If specified, deletes cookies in the given partition key. In Chrome, partitionKey matches the top-level site the partitioned cookie is available in. In Firefox, it matches the source origin.

public CookiePartitionKey PartitionKey { get; set; }

Property Value

CookiePartitionKey

Path

Gets or sets the path. If specified, deletes only cookies with the exact path.

public string Path { get; set; }

Property Value

string

Url

Gets or sets the URL. If specified, deletes all the cookies with the given name where domain and path match the provided URL.

public string Url { get; set; }

Property Value

string