言語

CertificateFactory.GenerateCertPath メソッド

定義

オーバーロード

名前 説明
GenerateCertPath(IList<Certificate>)

CertPath オブジェクトを生成し、CertificateListで初期化します。

GenerateCertPath(Stream)

CertPath オブジェクトを生成し、InputStream inStream から読み取られたデータを使用して初期化します。

GenerateCertPath(Stream, String)

CertPath オブジェクトを生成し、InputStream inStream から読み取られたデータを使用して初期化します。

GenerateCertPath(IList<Certificate>)

CertPath オブジェクトを生成し、CertificateListで初期化します。

[Android.Runtime.Register("generateCertPath", "(Ljava/util/List;)Ljava/security/cert/CertPath;", "")]
public Java.Security.Cert.CertPath? GenerateCertPath(System.Collections.Generic.IList<Java.Security.Cert.Certificate>? certificates);
[<Android.Runtime.Register("generateCertPath", "(Ljava/util/List;)Ljava/security/cert/CertPath;", "")>]
member this.GenerateCertPath : System.Collections.Generic.IList<Java.Security.Cert.Certificate> -> Java.Security.Cert.CertPath

パラメーター

certificates
IList<Certificate>

CertificateList

返品

指定された証明書の一覧で初期化されたCertPath

属性

注釈

CertPath オブジェクトを生成し、CertificateListで初期化します。

指定する証明書は、 CertificateFactoryでサポートされている種類である必要があります。 指定された List オブジェクトからコピーされます。

1.4 で追加されました。

Javaドキュメント。

このページの一部は、によって作成および共有され、に記載されている条件に従って使用される作業に基づく変更です。

適用対象

GenerateCertPath(Stream)

CertPath オブジェクトを生成し、InputStream inStream から読み取られたデータを使用して初期化します。

[Android.Runtime.Register("generateCertPath", "(Ljava/io/InputStream;)Ljava/security/cert/CertPath;", "")]
public Java.Security.Cert.CertPath? GenerateCertPath(System.IO.Stream? inStream);
[<Android.Runtime.Register("generateCertPath", "(Ljava/io/InputStream;)Ljava/security/cert/CertPath;", "")>]
member this.GenerateCertPath : System.IO.Stream -> Java.Security.Cert.CertPath

パラメーター

inStream
Stream

データを含むInputStream

返品

からのデータで初期化されたCertPathInputStream

属性

例外

解析の問題が検出された場合は ✒。

注釈

CertPath オブジェクトを生成し、InputStream inStream から読み取られたデータを使用して初期化します。 データは既定のエンコードと見なされます。 既定のエンコードの名前は、#getCertPathEncodings getCertPathEncodings メソッドによって返されるIteratorの最初の要素です。

1.4 で追加されました。

Javaドキュメント。

このページの一部は、によって作成および共有され、に記載されている条件に従って使用される作業に基づく変更です。

適用対象

GenerateCertPath(Stream, String)

CertPath オブジェクトを生成し、InputStream inStream から読み取られたデータを使用して初期化します。

[Android.Runtime.Register("generateCertPath", "(Ljava/io/InputStream;Ljava/lang/String;)Ljava/security/cert/CertPath;", "")]
public Java.Security.Cert.CertPath? GenerateCertPath(System.IO.Stream? inStream, string? encoding);
[<Android.Runtime.Register("generateCertPath", "(Ljava/io/InputStream;Ljava/lang/String;)Ljava/security/cert/CertPath;", "")>]
member this.GenerateCertPath : System.IO.Stream * string -> Java.Security.Cert.CertPath

パラメーター

inStream
Stream

データを含むInputStream

encoding
String

データに使用されるエンコード

返品

からのデータで初期化されたCertPathInputStream

属性

例外

解析の問題が検出された場合は ✒。

プロバイダーがこのメソッドを実装していない場合は 。

注釈

CertPath オブジェクトを生成し、InputStream inStream から読み取られたデータを使用して初期化します。 データは、指定されたエンコード内にあると見なされます。 標準エンコード名とその形式については、「Java Cryptography Architecture Standard Algorithm Name Documentation」の「CertPath Encodings」セクションを参照してください。

1.4 で追加されました。

Javaドキュメント。

このページの一部は、によって作成および共有され、に記載されている条件に従って使用される作業に基づく変更です。

適用対象