Table of Contents

Class ResponseReceivedEarlyHintsEventArgs

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

Fired when 103 Early Hints headers is received in addition to the common response. Not every responseReceived event will have an responseReceivedEarlyHints fired. Only one responseReceivedEarlyHints may be fired for eached responseReceived event.

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

Constructors

ResponseReceivedEarlyHintsEventArgs(RequestId, IReadOnlyDictionary<string, string>)

Fired when 103 Early Hints headers is received in addition to the common response. Not every responseReceived event will have an responseReceivedEarlyHints fired. Only one responseReceivedEarlyHints may be fired for eached responseReceived event.

public ResponseReceivedEarlyHintsEventArgs(RequestId RequestId, IReadOnlyDictionary<string, string> Headers)

Parameters

RequestId RequestId

Request identifier. Used to match this information to another responseReceived event.

Headers IReadOnlyDictionary<string, string>

Raw response headers as they were received over the wire. Duplicate headers in the response are represented as a single key with their values concatentated using \n as the separator. See also headersText that contains verbatim text for HTTP/1.*.

Properties

Headers

Raw response headers as they were received over the wire. Duplicate headers in the response are represented as a single key with their values concatentated using \n as the separator. See also headersText that contains verbatim text for HTTP/1.*.

public IReadOnlyDictionary<string, string> Headers { get; init; }

Property Value

IReadOnlyDictionary<string, string>

RequestId

Request identifier. Used to match this information to another responseReceived event.

public RequestId RequestId { get; init; }

Property Value

RequestId