Click or drag to resize
MimeKit

BouncyCastleCertificateExtensionsIsDelta Method

Determines whether the specified X.509 CRL is a delta CRL.

Namespace: MimeKit.Cryptography
Assembly: MimeKit (in MimeKit.dll) Version: 4.10.0
Syntax
C#
public static bool IsDelta(
	this X509Crl crl
)

Parameters

crl  X509Crl
The X.509 CRL to check.

Return Value

Boolean
if the specified CRL is a delta CRL; otherwise, .

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type X509Crl. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
Remarks
A delta CRL contains updates to a previously issued CRL. This method checks if the CRL contains the Delta CRL Indicator extension.
Note  Note
The X.509 delta CRL indicator extension must be marked critical to be found.
See Also