Table of Contents

Class OcspFetchResult

Namespace
SimpleSign.Core.Revocation
Assembly
SimpleSign.Core.dll

Result of an OCSP fetch operation, including revocation status, raw response bytes, and all responder certificates found in the response.

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

Constructors

OcspFetchResult(bool, byte[], IReadOnlyList<X509Certificate2>)

Result of an OCSP fetch operation, including revocation status, raw response bytes, and all responder certificates found in the response.

public OcspFetchResult(bool IsValid, byte[] ResponseBytes, IReadOnlyList<X509Certificate2> ResponderCertificates)

Parameters

IsValid bool
ResponseBytes byte[]
ResponderCertificates IReadOnlyList<X509Certificate2>

Properties

IsValid

public bool IsValid { get; init; }

Property Value

bool

ResponderCertificates

public IReadOnlyList<X509Certificate2> ResponderCertificates { get; init; }

Property Value

IReadOnlyList<X509Certificate2>

ResponseBytes

public byte[] ResponseBytes { get; init; }

Property Value

byte[]