Class SignedExchangeHeader
Information about a signed exchange header. https://wicg.github.io/webpackage/draft-yasskin-httpbis-origin-signed-exchanges-impl.html#cbor-representation
public sealed class SignedExchangeHeader
- Inheritance
-
SignedExchangeHeader
- Inherited Members
Properties
HeaderIntegrity
Signed exchange header integrity hash in the form of sha256-<base64-hash-value>.
[JsonPropertyName("headerIntegrity")]
public string HeaderIntegrity { get; set; }
Property Value
RequestUrl
Signed exchange request URL.
[JsonPropertyName("requestUrl")]
public string RequestUrl { get; set; }
Property Value
ResponseCode
Signed exchange response code.
[JsonPropertyName("responseCode")]
public long ResponseCode { get; set; }
Property Value
ResponseHeaders
Signed exchange response headers.
[JsonPropertyName("responseHeaders")]
public Headers ResponseHeaders { get; set; }
Property Value
Signatures
Signed exchange response signature.
[JsonPropertyName("signatures")]
public SignedExchangeSignature[] Signatures { get; set; }