Class SignedExchangeInfo
Information about a signed exchange response.
public sealed class SignedExchangeInfo
- Inheritance
-
SignedExchangeInfo
- Inherited Members
Properties
Errors
Errors occurred while handling the signed exchange.
[JsonPropertyName("errors")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public SignedExchangeError[]? Errors { get; set; }
Property Value
HasExtraInfo
Whether network response for the signed exchange was accompanied by extra headers.
[JsonPropertyName("hasExtraInfo")]
public bool HasExtraInfo { get; set; }
Property Value
Header
Information about the signed exchange header.
[JsonPropertyName("header")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public SignedExchangeHeader? Header { get; set; }
Property Value
OuterResponse
The outer response of signed HTTP exchange which was received from network.
[JsonPropertyName("outerResponse")]
public Response OuterResponse { get; set; }
Property Value
SecurityDetails
Security details for the signed exchange header.
[JsonPropertyName("securityDetails")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public SecurityDetails? SecurityDetails { get; set; }