Pkcs9AttributeObject コンストラクター

定義

Pkcs9AttributeObject クラスの新しいインスタンスを初期化します。

オーバーロード

Pkcs9AttributeObject()

Pkcs9AttributeObject クラスの新しいインスタンスを初期化します。

Pkcs9AttributeObject(AsnEncodedData)

指定された Pkcs9AttributeObject オブジェクトを対応する属性のタイプおよび値とし、AsnEncodedData クラスの新しいインスタンスを初期化します。

Pkcs9AttributeObject(Oid, Byte[])

属性タイプとして Pkcs9AttributeObject オブジェクトを、また、属性値として ASN.1 でエンコードされたデータを指定することによって、Oid クラスの新しいインスタンスを初期化します。、

Pkcs9AttributeObject(String, Byte[])

属性タイプとしてオブジェクト識別子 (OID) の文字列表現を、また、属性値として ASN.1 でエンコードされたデータを指定することによって、Pkcs9AttributeObject クラスの新しいインスタンスを初期化します。、

Pkcs9AttributeObject()

ソース:
Pkcs9AttributeObject.cs
ソース:
Pkcs9AttributeObject.cs
ソース:
Pkcs9AttributeObject.cs

Pkcs9AttributeObject クラスの新しいインスタンスを初期化します。

public:
 Pkcs9AttributeObject();
public Pkcs9AttributeObject ();
Public Sub New ()

適用対象

Pkcs9AttributeObject(AsnEncodedData)

ソース:
Pkcs9AttributeObject.cs
ソース:
Pkcs9AttributeObject.cs
ソース:
Pkcs9AttributeObject.cs

指定された Pkcs9AttributeObject オブジェクトを対応する属性のタイプおよび値とし、AsnEncodedData クラスの新しいインスタンスを初期化します。

public:
 Pkcs9AttributeObject(System::Security::Cryptography::AsnEncodedData ^ asnEncodedData);
public Pkcs9AttributeObject (System.Security.Cryptography.AsnEncodedData asnEncodedData);
new System.Security.Cryptography.Pkcs.Pkcs9AttributeObject : System.Security.Cryptography.AsnEncodedData -> System.Security.Cryptography.Pkcs.Pkcs9AttributeObject
Public Sub New (asnEncodedData As AsnEncodedData)

パラメーター

asnEncodedData
AsnEncodedData

使用する PKCS #9 属性のタイプおよび値を保持するオブジェクト。

例外

ValueOid メンバーの asnEncodedData メンバーの長さはゼロです。

OidasnEncodedData メンバーは null です。

- または -

ValueOid メンバーの asnEncodedData メンバーは null です。

適用対象

Pkcs9AttributeObject(Oid, Byte[])

ソース:
Pkcs9AttributeObject.cs
ソース:
Pkcs9AttributeObject.cs
ソース:
Pkcs9AttributeObject.cs

属性タイプとして Pkcs9AttributeObject オブジェクトを、また、属性値として ASN.1 でエンコードされたデータを指定することによって、Oid クラスの新しいインスタンスを初期化します。、

public:
 Pkcs9AttributeObject(System::Security::Cryptography::Oid ^ oid, cli::array <System::Byte> ^ encodedData);
public Pkcs9AttributeObject (System.Security.Cryptography.Oid oid, byte[] encodedData);
new System.Security.Cryptography.Pkcs.Pkcs9AttributeObject : System.Security.Cryptography.Oid * byte[] -> System.Security.Cryptography.Pkcs.Pkcs9AttributeObject
Public Sub New (oid As Oid, encodedData As Byte())

パラメーター

oid
Oid

PKCS #9 の属性タイプを表すオブジェクト。

encodedData
Byte[]

PKCS #9 の属性値を表すバイト値配列。

適用対象

Pkcs9AttributeObject(String, Byte[])

ソース:
Pkcs9AttributeObject.cs
ソース:
Pkcs9AttributeObject.cs
ソース:
Pkcs9AttributeObject.cs

属性タイプとしてオブジェクト識別子 (OID) の文字列表現を、また、属性値として ASN.1 でエンコードされたデータを指定することによって、Pkcs9AttributeObject クラスの新しいインスタンスを初期化します。、

public:
 Pkcs9AttributeObject(System::String ^ oid, cli::array <System::Byte> ^ encodedData);
public Pkcs9AttributeObject (string oid, byte[] encodedData);
new System.Security.Cryptography.Pkcs.Pkcs9AttributeObject : string * byte[] -> System.Security.Cryptography.Pkcs.Pkcs9AttributeObject
Public Sub New (oid As String, encodedData As Byte())

パラメーター

oid
String

PKCS #9 属性タイプを表す OID の文字列表現。

encodedData
Byte[]

PKCS #9 の属性値を保持するバイト値配列。

適用対象