LoadNetworkResourcePageResult

@Serializable
data class LoadNetworkResourcePageResult(val success: Boolean, val netError: Double? = null, val netErrorName: String? = null, val httpStatusCode: Double? = null, val stream: StreamHandle? = null, val headers: Headers? = null)(source)

An object providing the result of a network resource load.

Official doc

Constructors

Link copied to clipboard
constructor(success: Boolean, netError: Double? = null, netErrorName: String? = null, httpStatusCode: Double? = null, stream: StreamHandle? = null, headers: Headers? = null)

Properties

Link copied to clipboard
val headers: Headers? = null

Response headers.

Link copied to clipboard
val httpStatusCode: Double? = null
Link copied to clipboard
val netError: Double? = null

Optional values used for error reporting.

Link copied to clipboard
val netErrorName: String? = null
Link copied to clipboard
val stream: StreamHandle? = null

If successful, one of the following two fields holds the result.

Link copied to clipboard