type ICefPostData = interface(ICefBaseRefCounted)
Interface used to represent post data for a web request. The functions of this interface may be called on any thread.
UNKNOWN
<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/capi/cef_request_capi.h">CEF source file: /include/capi/cef_request_capi.h (cef_post_data_t))
function IsReadOnly: Boolean; |
|
function HasExcludedElements: Boolean; |
|
function GetElementCount: NativeUInt; |
|
procedure GetElements(elementsCount: NativeUInt; var elements: TCefPostDataElementArray); |
|
function RemoveElement(const element: ICefPostDataElement): Boolean; |
|
function AddElement(const element: ICefPostDataElement): Boolean; |
|
procedure RemoveElements; |
function IsReadOnly: Boolean; |
|
Returns true (1) if this object is read-only. Attributes
|
function GetElementCount: NativeUInt; |
|
Returns the number of existing post data elements. |
procedure GetElements(elementsCount: NativeUInt; var elements: TCefPostDataElementArray); |
|
Retrieve the post data elements. |
function RemoveElement(const element: ICefPostDataElement): Boolean; |
|
Remove the specified post data element. Returns true (1) if the removal succeeds. |
function AddElement(const element: ICefPostDataElement): Boolean; |
|
Add the specified post data element. Returns true (1) if the add succeeds. |
procedure RemoveElements; |
|
Remove all existing post data elements. |