Click or drag to resize
MimeKit

X509Certificate2ExtensionsAsBouncyCastleCertificate Method

Convert an X509Certificate2 into a BouncyCastle X509Certificate.

Namespace: MimeKit.Cryptography
Assembly: MimeKit (in MimeKit.dll) Version: 4.3.0
Syntax
C#
public static X509Certificate AsBouncyCastleCertificate(
	this X509Certificate2 certificate
)

Parameters

certificate  X509Certificate2
The certificate.

Return Value

X509Certificate
The bouncy castle certificate.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type X509Certificate2. 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).
Exceptions
ExceptionCondition
ArgumentNullExceptioncertificate is null.
Remarks
Converts an X509Certificate2 into a BouncyCastle X509Certificate.
See Also