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
IsValidboolResponseBytesbyte[]ResponderCertificatesIReadOnlyList<X509Certificate2>
Properties
IsValid
public bool IsValid { get; init; }
Property Value
ResponderCertificates
public IReadOnlyList<X509Certificate2> ResponderCertificates { get; init; }
Property Value
ResponseBytes
public byte[] ResponseBytes { get; init; }
Property Value
- byte[]