Table of Contents

Class SignedExchangeInfo

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

Information about a signed exchange response.

public sealed record SignedExchangeInfo : IEquatable<SignedExchangeInfo>
Inheritance
SignedExchangeInfo
Implements
Inherited Members

Constructors

SignedExchangeInfo(Response, bool)

Information about a signed exchange response.

public SignedExchangeInfo(Response OuterResponse, bool HasExtraInfo)

Parameters

OuterResponse Response

The outer response of signed HTTP exchange which was received from network.

HasExtraInfo bool

Whether network response for the signed exchange was accompanied by extra headers.

Properties

Errors

Errors occurred while handling the signed exchange.

public ImmutableArray<SignedExchangeError>? Errors { get; init; }

Property Value

ImmutableArray<SignedExchangeError>?

HasExtraInfo

Whether network response for the signed exchange was accompanied by extra headers.

public bool HasExtraInfo { get; init; }

Property Value

bool

Header

Information about the signed exchange header.

public SignedExchangeHeader? Header { get; init; }

Property Value

SignedExchangeHeader

OuterResponse

The outer response of signed HTTP exchange which was received from network.

public Response OuterResponse { get; init; }

Property Value

Response

SecurityDetails

Security details for the signed exchange header.

public SecurityDetails? SecurityDetails { get; init; }

Property Value

SecurityDetails