X509Certificate2Collection.Export メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
コンテンツ タイプに基づいて X.509 証明書情報をバイト配列にエクスポートします。
オーバーロード
Export(X509ContentType, String) |
パスワードを使用して X.509 証明書情報をバイト配列にエクスポートします。 |
Export(X509ContentType) |
X.509 証明書情報をバイト配列にエクスポートします。 |
Export(X509ContentType, String)
パスワードを使用して 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)
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 証明書情報。
注釈
このメソッドは、パスワードを必要としないコンテンツ タイプをサポートします。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET