Click or drag to resize
MimeKit

X509CertificateDatabaseFind(X509Name, X509CrlRecordFields) Method

Finds the CRL records for the specified issuer.

Namespace: MimeKit.Cryptography
Assembly: MimeKit (in MimeKit.dll) Version: 4.10.0
Syntax
C#
public IEnumerable<X509CrlRecord> Find(
	X509Name issuer,
	X509CrlRecordFields fields
)

Parameters

issuer  X509Name
The issuer.
fields  X509CrlRecordFields
The desired fields.

Return Value

IEnumerableX509CrlRecord
The matching CRL records populated with the desired fields.

Implements

IX509CertificateDatabaseFind(X509Name, X509CrlRecordFields)
Exceptions
ExceptionCondition
ArgumentNullExceptionissuer is .
Remarks
Searches the database for CRL records matching the specified issuer, returning all matching records populated with the desired fields.
See Also