LoadingFailedParameter

@Serializable
data class LoadingFailedParameter(val requestId: String, val timestamp: Double, val type: Network.ResourceType, val errorText: String, val canceled: Boolean? = null, val blockedReason: Network.BlockedReason? = null, val corsErrorStatus: Network.CorsErrorStatus? = null)

Fired when HTTP request has failed to load.

Constructors

Link copied to clipboard
constructor(requestId: String, timestamp: Double, type: Network.ResourceType, errorText: String, canceled: Boolean? = null, blockedReason: Network.BlockedReason? = null, corsErrorStatus: Network.CorsErrorStatus? = null)

Properties

Link copied to clipboard

The reason why loading was blocked, if any.

Link copied to clipboard
val canceled: Boolean? = null

True if loading was canceled.

Link copied to clipboard

The reason why loading was blocked by CORS, if any.

Link copied to clipboard

Error message. List of network errors: https://cs.chromium.org/chromium/src/net/base/net_error_list.h

Link copied to clipboard

Request identifier.

Link copied to clipboard

Timestamp.

Link copied to clipboard

Resource type.