Header menu logo fable-electron-docs-api

Filter Type

Constructors

Constructor Description

Filter(?url, ?name, ?domain, ?path, ?secure, ?session, ?httpOnly)

Full Usage: Filter(?url, ?name, ?domain, ?path, ?secure, ?session, ?httpOnly)

Parameters:
    ?url : string - Retrieves cookies which are associated with url. Empty implies retrieving cookies of all URLs.
    ?name : string - Filters cookies by name.
    ?domain : string - Retrieves cookies whose domains match or are subdomains of domains.
    ?path : string - Retrieves cookies whose path matches path.
    ?secure : bool - Filters cookies by their Secure property.
    ?session : bool - Filters out session or persistent cookies.
    ?httpOnly : bool - Filters cookies by httpOnly.

Returns: Filter
?url : string

Retrieves cookies which are associated with url. Empty implies retrieving cookies of all URLs.

?name : string

Filters cookies by name.

?domain : string

Retrieves cookies whose domains match or are subdomains of domains.

?path : string

Retrieves cookies whose path matches path.

?secure : bool

Filters cookies by their Secure property.

?session : bool

Filters out session or persistent cookies.

?httpOnly : bool

Filters cookies by httpOnly.

Returns: Filter

Instance members

Instance member Description

this.domain

Full Usage: this.domain

Retrieves cookies whose domains match or are subdomains of domains.

this.httpOnly

Full Usage: this.httpOnly

Filters cookies by httpOnly.

this.name

Full Usage: this.name

Filters cookies by name.

this.path

Full Usage: this.path

Retrieves cookies whose path matches path.

this.secure

Full Usage: this.secure

Filters cookies by their Secure property.

this.session

Full Usage: this.session

Filters out session or persistent cookies.

this.url

Full Usage: this.url

Retrieves cookies which are associated with url. Empty implies retrieving cookies of all URLs.

Type something to start searching.