Click or drag to resize
MimeKit

X509CertificateStoreExport(String, String) Method

Exports the specified stream and password to a pkcs12 encrypted file.

Namespace: MimeKit.Cryptography
Assembly: MimeKit (in MimeKit.dll) Version: 4.3.0
Syntax
C#
public void Export(
	string fileName,
	string password
)

Parameters

fileName  String
The file path to write to.
password  String
The password to use to lock the private keys.
Exceptions
ExceptionCondition
ArgumentNullException

fileName is null.

-or-

password is null.

ArgumentExceptionfileName is a zero-length string, contains only white space, or contains one or more invalid characters.
PathTooLongException The specified path exceeds the maximum allowed path length of the system.
DirectoryNotFoundException A directory in the specified path does not exist.
UnauthorizedAccessException The user does not have access to create the specified file.
IOException An error occurred while writing to the stream.
Remarks
Exports the specified stream and password to a pkcs12 encrypted file.
See Also