data class LoadingFailedEvent : NetworkEvent
Fired when HTTP request has failed to load.
<init> |
Fired when HTTP request has failed to load. LoadingFailedEvent(requestId: RequestId, timestamp: MonotonicTime, type: ResourceType, errorText: String, canceled: Boolean? = null, blockedReason: BlockedReason? = null) |
blockedReason |
The reason why loading was blocked, if any. val blockedReason: BlockedReason? |
canceled |
True if loading was canceled. val canceled: Boolean? |
errorText |
User friendly error message. val errorText: String |
requestId |
Request identifier. val requestId: RequestId |
timestamp |
Timestamp. val timestamp: MonotonicTime |
type |
Resource type. val type: ResourceType |