Click or drag to resize
MimeKit

X509CrlRecordFields Enumeration

X.509 certificate revocation list record fields.

Namespace: MimeKit.Cryptography
Assembly: MimeKit (in MimeKit.dll) Version: 4.3.0
Syntax
C#
[FlagsAttribute]
public enum X509CrlRecordFields
Members
Member nameValueDescription
Id1 The "id" field is typically just the ROWID in the database.
IsDelta2 The "delta" field is a boolean value indicating whether the certificate revocation list is a delta.
IssuerName4 The "issuer name" field stores the issuer name of the certificate revocation list.
ThisUpdate8 The "this update" field stores the date and time of the most recent update.
NextUpdate16 The "next update" field stores the date and time of the next scheduled update.
Crl32 The "crl" field stores the raw binary data of the certificate revocation list.
Remarks
The record fields are used when querying the IX509CertificateDatabase for certificate revocation lists.
See Also