CefPostData

abstract class CefPostData : CefNativeAdapter

Class used to represent post data for a web request. The methods of this class may be called on any thread.

Inheritors

Functions

Link copied to clipboard
abstract fun addElement(element: CefPostDataElement): Boolean
Add the specified post data element.
Link copied to clipboard
Create a new CefPostData object.
Link copied to clipboard
abstract fun dispose()
Removes the native reference from an unused object.
Link copied to clipboard
abstract fun getElementCount(): Int
Returns the number of existing post data elements.
Link copied to clipboard
abstract fun getElements(elements: Vector<CefPostDataElement>)
Retrieve the post data elements.
Link copied to clipboard
open fun getNativeRef(): Long

open fun getNativeRef(identifer: String): Long
Method is called by the native code to get the reference to an previous stored identifier.
Link copied to clipboard
abstract fun isReadOnly(): Boolean
Returns true if this object is read-only.
Link copied to clipboard
abstract fun removeElement(element: CefPostDataElement): Boolean
Remove the specified post data element.
Link copied to clipboard
abstract fun removeElements()
Remove all existing post data elements.
Link copied to clipboard
open fun setNativeRef(identifer: String, nativeRef: Long)
Method is called by the native code to store a reference to an implemented native JNI counterpart.
Link copied to clipboard
open fun toString(): String
open fun toString(mimeType: String): String