Class CertificateStatus
- Namespace
- Org.BouncyCastle.Tls
- Assembly
- BouncyCastle.Cryptography.dll
public sealed class CertificateStatus
- Inheritance
-
CertificateStatus
- Inherited Members
Constructors
CertificateStatus(short, object)
public CertificateStatus(short statusType, object response)
Parameters
Properties
OcspResponse
public OcspResponse OcspResponse { get; }
Property Value
OcspResponseList
an IList<T> of (possibly null) OcspResponse.
public IList<OcspResponse> OcspResponseList { get; }
Property Value
Response
public object Response { get; }
Property Value
StatusType
public short StatusType { get; }
Property Value
Methods
Encode(Stream)
Encode this CertificateStatus to a Stream.
public void Encode(Stream output)
Parameters
Exceptions
Parse(TlsContext, Stream)
Parse a CertificateStatus from a Stream.
public static CertificateStatus Parse(TlsContext context, Stream input)
Parameters
contextTlsContextthe TlsContext of the current connection.
inputStreamthe Stream to parse from.
Returns
- CertificateStatus
a CertificateStatus object.