type TCustomCookieAccessFilter = class(TCefCookieAccessFilterOwn)
This item has no description.
FEvents: Pointer; |
function CanSendCookie(const browser: ICefBrowser; const frame: ICefFrame; const request: ICefRequest; const cookie: PCefCookie): boolean; override; |
|
function CanSaveCookie(const browser: ICefBrowser; const frame: ICefFrame; const request: ICefRequest; const response: ICefResponse; const cookie: PCefCookie): boolean; override; |
|
constructor Create(const events : IChromiumEvents); reintroduce; |
|
procedure BeforeDestruction; override; |
|
procedure RemoveReferences; override; |
FEvents: Pointer; |
|
This item has no description. |
function CanSendCookie(const browser: ICefBrowser; const frame: ICefFrame; const request: ICefRequest; const cookie: PCefCookie): boolean; override; |
|
This item has no description. Showing description inherited from ICefCookieAccessFilter.CanSendCookie. Called on the IO thread before a resource request is sent. The |browser| and |frame| values represent the source of the request, and may be NULL for requests originating from service workers or ICefUrlRequest. |request| cannot be modified in this callback. Return true (1) if the specified cookie can be sent with the request or false (0) otherwise. |
function CanSaveCookie(const browser: ICefBrowser; const frame: ICefFrame; const request: ICefRequest; const response: ICefResponse; const cookie: PCefCookie): boolean; override; |
|
This item has no description. Showing description inherited from ICefCookieAccessFilter.CanSaveCookie. Called on the IO thread after a resource response is received. The |browser| and |frame| values represent the source of the request, and may be NULL for requests originating from service workers or ICefUrlRequest. |request| cannot be modified in this callback. Return true (1) if the specified cookie returned with the response can be saved or false (0) otherwise. |
constructor Create(const events : IChromiumEvents); reintroduce; |
|
This item has no description. |
procedure BeforeDestruction; override; |
|
This item has no description. |
procedure RemoveReferences; override; |
|
This item has no description. Showing description inherited from ICefCookieAccessFilter.RemoveReferences. Custom procedure to clear all references. |