C# 클래스 MimeKit.Cryptography.X509CertificateRecord

An X.509 certificate record.
Represents an X.509 certificate record loaded from a database.
파일 보기 프로젝트 열기: nachocove/MimeKit 1 사용 예제들

공개 메소드들

메소드 설명
X509CertificateRecord ( ) : System

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

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

X509CertificateRecord ( X509Certificate certificate ) : System

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

Creates a new certificate record for storing in a IX509CertificateDatabase.

X509CertificateRecord ( X509Certificate certificate, AsymmetricKeyParameter key ) : System

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

Creates a new certificate record with a private key for storing in a IX509CertificateDatabase.

메소드 상세

X509CertificateRecord() 공개 메소드

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

X509CertificateRecord() 공개 메소드

Initializes a new instance of the MimeKit.Cryptography.X509CertificateRecord class.
Creates a new certificate record for storing in a IX509CertificateDatabase.
/// is null. ///
public X509CertificateRecord ( X509Certificate certificate ) : System
certificate Org.BouncyCastle.X509.X509Certificate The certificate.
리턴 System

X509CertificateRecord() 공개 메소드

Initializes a new instance of the MimeKit.Cryptography.X509CertificateRecord class.
Creates a new certificate record with a private key for storing in a IX509CertificateDatabase.
/// is null. /// -or- /// is null. /// /// is not a private key. ///
public X509CertificateRecord ( X509Certificate certificate, AsymmetricKeyParameter key ) : System
certificate Org.BouncyCastle.X509.X509Certificate The certificate.
key Org.BouncyCastle.Crypto.AsymmetricKeyParameter The private key.
리턴 System