C# Class MimeKit.Cryptography.X509CrlRecord

An X.509 certificate revocation list (CRL) record.
Represents an X.509 certificate revocation list record loaded from a database.
显示文件 Open project: nachocove/MimeKit Class Usage Examples

Public Methods

Method Description
X509CrlRecord ( ) : System

Initializes a new instance of the MimeKit.Cryptography.X509CrlRecord class.

This constructor is only meant to be used by implementors of IX509CertificateDatabase when loading records from the database.

X509CrlRecord ( X509Crl crl ) : System

Initializes a new instance of the MimeKit.Cryptography.X509CrlRecord class.

Creates a new CRL record for storing in a IX509CertificateDatabase.

Method Details

X509CrlRecord() public method

Initializes a new instance of the MimeKit.Cryptography.X509CrlRecord class.
This constructor is only meant to be used by implementors of IX509CertificateDatabase when loading records from the database.
public X509CrlRecord ( ) : System
return System

X509CrlRecord() public method

Initializes a new instance of the MimeKit.Cryptography.X509CrlRecord class.
Creates a new CRL record for storing in a IX509CertificateDatabase.
/// is null. ///
public X509CrlRecord ( X509Crl crl ) : System
crl Org.BouncyCastle.X509.X509Crl The certificate revocation list.
return System