Freigeben über


Pkcs9AttributeObject Konstruktoren

Definition

Initialisiert eine neue Instanz der Pkcs9AttributeObject-Klasse.

Überlädt

Pkcs9AttributeObject()

Initialisiert eine neue Instanz der Pkcs9AttributeObject-Klasse.

Pkcs9AttributeObject(AsnEncodedData)

Initialisiert eine neue Instanz der Pkcs9AttributeObject-Klasse mithilfe eines angegebenen AsnEncodedData-Objekts als Attributtyp und -wert.

Pkcs9AttributeObject(Oid, Byte[])

Initialisiert eine neue Instanz der Pkcs9AttributeObject-Klasse mithilfe eines angegebenen Oid-Objekts als Attributtyp und angegebenen ASN.1-codierten Daten als Attributwert.

Pkcs9AttributeObject(String, Byte[])

Initialisiert eine neue Instanz der Pkcs9AttributeObject-Klasse mithilfe einer angegebenen Zeichenfolgendarstellung eines Objektbezeichners (OID) als Attributtyp und angegebenen ASN.1-codierten Daten als Attributwert.

Pkcs9AttributeObject()

Quelle:
Pkcs9AttributeObject.cs
Quelle:
Pkcs9AttributeObject.cs
Quelle:
Pkcs9AttributeObject.cs
Quelle:
Pkcs9AttributeObject.cs

Initialisiert eine neue Instanz der Pkcs9AttributeObject-Klasse.

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

Gilt für:

Pkcs9AttributeObject(AsnEncodedData)

Quelle:
Pkcs9AttributeObject.cs
Quelle:
Pkcs9AttributeObject.cs
Quelle:
Pkcs9AttributeObject.cs
Quelle:
Pkcs9AttributeObject.cs

Initialisiert eine neue Instanz der Pkcs9AttributeObject-Klasse mithilfe eines angegebenen AsnEncodedData-Objekts als Attributtyp und -wert.

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)

Parameter

asnEncodedData
AsnEncodedData

Ein Objekt, das den zu verwendenden PKCS #9-Attributtyp und -Wert enthält.

Ausnahmen

Die Länge des Value-Members des Oid-Members von asnEncodedData ist null (0).

Der Oid-Member von asnEncodedData ist null.

- oder -

Der Value-Member des Oid-Members von asnEncodedData ist null.

Gilt für:

Pkcs9AttributeObject(Oid, Byte[])

Quelle:
Pkcs9AttributeObject.cs
Quelle:
Pkcs9AttributeObject.cs
Quelle:
Pkcs9AttributeObject.cs
Quelle:
Pkcs9AttributeObject.cs

Initialisiert eine neue Instanz der Pkcs9AttributeObject-Klasse mithilfe eines angegebenen Oid-Objekts als Attributtyp und angegebenen ASN.1-codierten Daten als Attributwert.

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())

Parameter

oid
Oid

Ein Objekt, das den PKCS #9-Attributtyp darstellt.

encodedData
Byte[]

Ein Array von Bytewerten, das den PKCS #9-Attributwert darstellt.

Gilt für:

Pkcs9AttributeObject(String, Byte[])

Quelle:
Pkcs9AttributeObject.cs
Quelle:
Pkcs9AttributeObject.cs
Quelle:
Pkcs9AttributeObject.cs
Quelle:
Pkcs9AttributeObject.cs

Initialisiert eine neue Instanz der Pkcs9AttributeObject-Klasse mithilfe einer angegebenen Zeichenfolgendarstellung eines Objektbezeichners (OID) als Attributtyp und angegebenen ASN.1-codierten Daten als Attributwert.

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())

Parameter

oid
String

Die Zeichenfolgendarstellung einer OID, die den PKCS #9-Attributtyp darstellt.

encodedData
Byte[]

Ein Array von Bytewerten, das den PKCS #9-Attributwert enthält.

Gilt für: