Class OcspStatusRequest
- Namespace
- Org.BouncyCastle.Tls
- Assembly
- BouncyCastle.Cryptography.dll
RFC 3546 3.6
public sealed class OcspStatusRequest
- Inheritance
-
OcspStatusRequest
- Inherited Members
Constructors
OcspStatusRequest(IList<ResponderID>, X509Extensions)
public OcspStatusRequest(IList<ResponderID> responderIDList, X509Extensions requestExtensions)
Parameters
responderIDListIList<ResponderID>an IList<T> of ResponderID, specifying the list of trusted OCSP responders. An empty list has the special meaning that the responders are implicitly known to the server - e.g., by prior arrangement.
requestExtensionsX509ExtensionsOCSP request extensions. A null value means that there are no extensions.
Properties
RequestExtensions
public X509Extensions RequestExtensions { get; }
Property Value
- X509Extensions
OCSP request extensions.
ResponderIDList
public IList<ResponderID> ResponderIDList { get; }
Property Value
- IList<ResponderID>
an IList<T> of ResponderID.
Methods
Encode(Stream)
Encode this OcspStatusRequest to a Stream.
public void Encode(Stream output)
Parameters
Exceptions
Parse(Stream)
Parse an OcspStatusRequest from a Stream.
public static OcspStatusRequest Parse(Stream input)
Parameters
Returns
- OcspStatusRequest
an OcspStatusRequest object.