Table of Contents

Class ResponseReceivedEarlyHintsEventArgs

Namespace
OpenQA.Selenium.DevTools.V148.Network
Assembly
Selenium.WebDriver.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 class ResponseReceivedEarlyHintsEventArgs : EventArgs
Inheritance
ResponseReceivedEarlyHintsEventArgs
Inherited Members

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.*.

[JsonPropertyName("headers")]
public Headers Headers { get; set; }

Property Value

Headers

RequestId

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

[JsonPropertyName("requestId")]
public string RequestId { get; set; }

Property Value

string