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.cs
ソース:
Pkcs9AttributeObject.cs
ソース:
Pkcs9AttributeObject.cs
ソース:
Pkcs9AttributeObject.cs
ソース:
Pkcs9AttributeObject.cs

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

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

適用対象

Pkcs9AttributeObject(AsnEncodedData)

ソース:
Pkcs9AttributeObject.cs
ソース:
Pkcs9AttributeObject.cs
ソース:
Pkcs9AttributeObject.cs
ソース:
Pkcs9AttributeObject.cs
ソース:
Pkcs9AttributeObject.cs
ソース:
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 メンバーの長さは 0 です。

OidasnEncodedData メンバーがnull

-又は-

ValueOid メンバーのasnEncodedData メンバーがnull

適用対象

Pkcs9AttributeObject(Oid, Byte[])

ソース:
Pkcs9AttributeObject.cs
ソース:
Pkcs9AttributeObject.cs
ソース:
Pkcs9AttributeObject.cs
ソース:
Pkcs9AttributeObject.cs
ソース:
Pkcs9AttributeObject.cs
ソース:
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
ソース:
Pkcs9AttributeObject.cs
ソース:
Pkcs9AttributeObject.cs
ソース:
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 属性値を含むバイト値の配列。

適用対象