Interface ICefUrlRequest

Description
Hierarchy
Fields
Methods
Properties

Unit

Declaration

type ICefUrlRequest = interface(ICefBaseRefCounted)

Description

Interface used to make a URL request. URL requests are not associated with a browser instance so no ICefClient callbacks will be executed. URL requests can be created on any valid CEF thread in either the browser or render process. Once created the functions of the URL request object must be accessed on the same thread that created it.

UNKNOWN

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/capi/cef_urlrequest_capi.h">CEF source file: /include/capi/cef_urlrequest_capi.h (cef_urlrequest_t))

Hierarchy

Overview

Methods

Public function GetRequest: ICefRequest;
Public function GetClient: ICefUrlrequestClient;
Public function GetRequestStatus: TCefUrlRequestStatus;
Public function GetRequestError: Integer;
Public function GetResponse: ICefResponse;
Public function GetResponseWasCached: boolean;
Public procedure Cancel;

Properties

Public property Request : ICefRequest read GetRequest;
Public property Client : ICefUrlrequestClient read Getclient;
Public property RequestStatus : TCefUrlRequestStatus read GetRequestStatus;
Public property RequestError : Integer read GetRequestError;
Public property Response : ICefResponse read GetResponse;
Public property ResponseWasCached : boolean read GetResponseWasCached;

Description

Methods

Public function GetRequest: ICefRequest;

Returns the request object used to create this URL request. The returned object is read-only and should not be modified.

Attributes
GUID['{59226AC1-A0FA-4D59-9DF4-A65C42391A67}']
Public function GetClient: ICefUrlrequestClient;

Returns the client.

Public function GetRequestStatus: TCefUrlRequestStatus;

Returns the request status.

Public function GetRequestError: Integer;

Returns the request error if status is UR_CANCELED or UR_FAILED, or 0 otherwise.

Public function GetResponse: ICefResponse;

Returns the response, or NULL if no response information is available. Response information will only be available after the upload has completed. The returned object is read-only and should not be modified.

Public function GetResponseWasCached: boolean;

Returns true (1) if the response body was served from the cache. This includes responses for which revalidation was required.

Public procedure Cancel;

Cancel the request.

Properties

Public property Request : ICefRequest read GetRequest;

Returns the request object used to create this URL request. The returned object is read-only and should not be modified.

Public property Client : ICefUrlrequestClient read Getclient;

Returns the client.

Public property RequestStatus : TCefUrlRequestStatus read GetRequestStatus;

Returns the request status.

Public property RequestError : Integer read GetRequestError;

Returns the request error if status is UR_CANCELED or UR_FAILED, or 0 otherwise.

Public property Response : ICefResponse read GetResponse;

Returns true (1) if the response body was served from the cache. This includes responses for which revalidation was required.

Public property ResponseWasCached : boolean read GetResponseWasCached;

Returns true (1) if the response body was served from the cache. This includes responses for which revalidation was required.


Generated by PasDoc 0.16.0-snapshot.