Table of Contents

Class SignedExchangeSignature

Namespace
Selenium.WebDriver.BiDi.Cdp.Network
Assembly
Selenium.WebDriver.BiDi.Cdp.dll
public sealed record SignedExchangeSignature : IEquatable<SignedExchangeSignature>
Inheritance
SignedExchangeSignature
Implements
Inherited Members

Constructors

SignedExchangeSignature(string, string, string, string, long, long)

public SignedExchangeSignature(string Label, string Signature, string Integrity, string ValidityUrl, long Date, long Expires)

Parameters

Label string

Signed exchange signature label.

Signature string

The hex string of signed exchange signature.

Integrity string

Signed exchange signature integrity.

ValidityUrl string

Signed exchange signature validity Url.

Date long

Signed exchange signature date.

Expires long

Signed exchange signature expires.

Properties

CertSha256

The hex string of signed exchange signature cert sha256.

public string? CertSha256 { get; init; }

Property Value

string

CertUrl

Signed exchange signature cert Url.

public string? CertUrl { get; init; }

Property Value

string

Certificates

The encoded certificates.

public ImmutableArray<string>? Certificates { get; init; }

Property Value

ImmutableArray<string>?

Date

Signed exchange signature date.

public long Date { get; init; }

Property Value

long

Expires

Signed exchange signature expires.

public long Expires { get; init; }

Property Value

long

Integrity

Signed exchange signature integrity.

public string Integrity { get; init; }

Property Value

string

Label

Signed exchange signature label.

public string Label { get; init; }

Property Value

string

Signature

The hex string of signed exchange signature.

public string Signature { get; init; }

Property Value

string

ValidityUrl

Signed exchange signature validity Url.

public string ValidityUrl { get; init; }

Property Value

string