X509Certificate2Collection.Export メソッド

定義

コンテンツ タイプに基づいて X.509 証明書情報をバイト配列にエクスポートします。

オーバーロード

Export(X509ContentType, String)

パスワードを使用して X.509 証明書情報をバイト配列にエクスポートします。

Export(X509ContentType)

X.509 証明書情報をバイト配列にエクスポートします。

Export(X509ContentType, String)

ソース:
X509Certificate2Collection.cs
ソース:
X509Certificate2Collection.cs
ソース:
X509Certificate2Collection.cs

パスワードを使用して X.509 証明書情報をバイト配列にエクスポートします。

public:
 cli::array <System::Byte> ^ Export(System::Security::Cryptography::X509Certificates::X509ContentType contentType, System::String ^ password);
public byte[]? Export (System.Security.Cryptography.X509Certificates.X509ContentType contentType, string? password);
public byte[] Export (System.Security.Cryptography.X509Certificates.X509ContentType contentType, string password);
member this.Export : System.Security.Cryptography.X509Certificates.X509ContentType * string -> byte[]
Public Function Export (contentType As X509ContentType, password As String) As Byte()

パラメーター

contentType
X509ContentType

サポートされる X509ContentType オブジェクト。

password
String

バイト配列を保護するために使用する文字列。

戻り値

Byte[]

バイト配列内の X.509 証明書情報。

例外

証明書を読み取ることができないか、内容が無効であるか、または (証明書でパスワードが必要な場合) 指定されたパスワードが無効なために秘密キーをエクスポートできませんでした。

注釈

このメソッドは、次 X509ContentType の型をサポートしています。

適用対象

Export(X509ContentType)

ソース:
X509Certificate2Collection.cs
ソース:
X509Certificate2Collection.cs
ソース:
X509Certificate2Collection.cs

X.509 証明書情報をバイト配列にエクスポートします。

public:
 cli::array <System::Byte> ^ Export(System::Security::Cryptography::X509Certificates::X509ContentType contentType);
public byte[]? Export (System.Security.Cryptography.X509Certificates.X509ContentType contentType);
public byte[] Export (System.Security.Cryptography.X509Certificates.X509ContentType contentType);
member this.Export : System.Security.Cryptography.X509Certificates.X509ContentType -> byte[]
Public Function Export (contentType As X509ContentType) As Byte()

パラメーター

contentType
X509ContentType

サポートされる X509ContentType オブジェクト。

戻り値

Byte[]

バイト配列内の X.509 証明書情報。

注釈

このメソッドは、パスワードを必要としないコンテンツ タイプをサポートします。

適用対象