chrome-devtools-kotlin / org.hildan.chrome.devtools.domains.network.events / NetworkEvent / LoadingFinishedEvent

LoadingFinishedEvent

data class LoadingFinishedEvent : NetworkEvent

Fired when HTTP request has finished loading.

Official doc

Constructors

<init>

Fired when HTTP request has finished loading.

LoadingFinishedEvent(requestId: RequestId, timestamp: MonotonicTime, encodedDataLength: Double, shouldReportCorbBlocking: Boolean? = null)

Properties

encodedDataLength

Total number of bytes received for this request.

val encodedDataLength: Double

requestId

Request identifier.

val requestId: RequestId

shouldReportCorbBlocking

Set when 1) response was blocked by Cross-Origin Read Blocking and also

val shouldReportCorbBlocking: Boolean?

timestamp

Timestamp.

val timestamp: MonotonicTime