Class SignedExchangeInfo
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
OuterResponseResponseThe outer response of signed HTTP exchange which was received from network.
HasExtraInfoboolWhether 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
HasExtraInfo
Whether network response for the signed exchange was accompanied by extra headers.
public bool HasExtraInfo { get; init; }
Property Value
Header
Information about the signed exchange header.
public SignedExchangeHeader? Header { get; init; }
Property Value
OuterResponse
The outer response of signed HTTP exchange which was received from network.
public Response OuterResponse { get; init; }
Property Value
SecurityDetails
Security details for the signed exchange header.
public SecurityDetails? SecurityDetails { get; init; }