RemoteRequest

Constructors

Link copied to clipboard
constructor(impl: RemoteRequestImpl)

Functions

Link copied to clipboard
Create a new CefRequest object.
Link copied to clipboard
open fun dispose()
Removes the native reference from an unused object.
Link copied to clipboard
Get the URL to the first party for cookies used in combination with CefURLRequest.
Link copied to clipboard
open fun getFlags(): Int
Get the flags used in combination with CefURLRequest.
Link copied to clipboard
open fun getHeaderByName(name: String): String
Get the value for the specified response header field.
Link copied to clipboard
open fun getHeaderMap(headerMap: Map<String, String>)
Get the header values.
Link copied to clipboard
open fun getIdentifier(): Long
Returns the globally unique identifier for this request or 0 if not specified.
Link copied to clipboard
open fun getMethod(): String
Get the request method type.
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
Get the post data.
Link copied to clipboard
Get the referrer policy.
Link copied to clipboard
Get the referrer URL.
Link copied to clipboard
Get the resource type for this request.
Link copied to clipboard
Get the transition type for this request.
Link copied to clipboard
open fun getURL(): String
Get the fully qualified URL.
Link copied to clipboard
open fun isReadOnly(): Boolean
Returns true if this object is read-only.
Link copied to clipboard
open fun set(url: String, method: String, postData: CefPostData, headerMap: Map<String, String>)
Set all values at one time.
Link copied to clipboard
Set the URL to the first party for cookies used in combination with CefURLRequest.
Link copied to clipboard
open fun setFlags(flags: Int)
Set the flags used in combination with CefURLRequest.
Link copied to clipboard
open fun setHeaderByName(name: String, value: String, overwrite: Boolean)
Set the value for the specified response header field.
Link copied to clipboard
open fun setHeaderMap(headerMap: Map<String, String>)
Set the header values.
Link copied to clipboard
open fun setMethod(method: String)
Set the request method type.
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 setPostData(postData: CefPostData)
Set the post data.
Link copied to clipboard
Set the referrer URL and policy.
Link copied to clipboard
open fun setURL(url: String)
Set the fully qualified URL.
Link copied to clipboard
open fun toString(): String