X Tutup
Skip to content

Latest commit

 

History

History
45 lines (30 loc) · 1.09 KB

File metadata and controls

45 lines (30 loc) · 1.09 KB

API categories | API index

CookieAccessFilter (interface)

Table of contents:

Callbacks

CanSendCookie

Parameter Type
browser Browser
frame Frame
request Request
cookie Cookie
Return bool

Called on the IO thread before a resource is sent. Browser and frame values represent the source of the request. Return true if the specified cookie can be sent with the request or false otherwise.

CanSaveCookie

Parameter Type
browser Browser
frame Frame
request Request
response Response
cookie Cookie
Return bool

Called on the IO thread after a resource response is received. Browser and frame values represent the source of the request. Return true if the specified cookie returned with the response can be saved or false otherwise.

X Tutup