Table of Contents

Class ResponseReceivedEventArgs

Namespace
Selenium.WebDriver.BiDi.Cdp.Network
Assembly
Selenium.WebDriver.BiDi.Cdp.dll

Fired when HTTP response is available.

public sealed record ResponseReceivedEventArgs : EventArgs, IEquatable<EventArgs>, IEquatable<ResponseReceivedEventArgs>
Inheritance
EventArgs
ResponseReceivedEventArgs
Implements
IEquatable<EventArgs>
Inherited Members
EventArgs.ToString()
EventArgs.GetHashCode()
EventArgs.Equals(EventArgs)
EventArgs.<Clone>$()
EventArgs.BiDi
EventArgs.AdditionalData
EventArgs.AdditionalMessageData

Constructors

ResponseReceivedEventArgs(RequestId, LoaderId, MonotonicTime, ResourceType, Response, bool, FrameId?)

Fired when HTTP response is available.

public ResponseReceivedEventArgs(RequestId RequestId, LoaderId LoaderId, MonotonicTime Timestamp, ResourceType Type, Response Response, bool HasExtraInfo, FrameId? FrameId = null)

Parameters

RequestId RequestId

Request identifier.

LoaderId LoaderId

Loader identifier. Empty string if the request is fetched from worker.

Timestamp MonotonicTime

Timestamp.

Type ResourceType

Resource type.

Response Response

Response data.

HasExtraInfo bool

Indicates whether requestWillBeSentExtraInfo and responseReceivedExtraInfo events will be or were emitted for this request.

FrameId FrameId

Frame identifier.

Properties

FrameId

Frame identifier.

public FrameId? FrameId { get; init; }

Property Value

FrameId

HasExtraInfo

Indicates whether requestWillBeSentExtraInfo and responseReceivedExtraInfo events will be or were emitted for this request.

public bool HasExtraInfo { get; init; }

Property Value

bool

LoaderId

Loader identifier. Empty string if the request is fetched from worker.

public LoaderId LoaderId { get; init; }

Property Value

LoaderId

RequestId

Request identifier.

public RequestId RequestId { get; init; }

Property Value

RequestId

Response

Response data.

public Response Response { get; init; }

Property Value

Response

Timestamp

Timestamp.

public MonotonicTime Timestamp { get; init; }

Property Value

MonotonicTime

Type

Resource type.

public ResourceType Type { get; init; }

Property Value

ResourceType