Pkcs9AttributeObject Constructeurs

Définition

Initialise une nouvelle instance de la classe Pkcs9AttributeObject.

Surcharges

Nom Description
Pkcs9AttributeObject()

Initialise une nouvelle instance de la classe Pkcs9AttributeObject.

Pkcs9AttributeObject(AsnEncodedData)

Initialise une nouvelle instance de la classe à l’aide Pkcs9AttributeObject d’un objet spécifié AsnEncodedData comme type d’attribut et valeur.

Pkcs9AttributeObject(Oid, Byte[])

Initialise une nouvelle instance de la classe à l’aide Pkcs9AttributeObject d’un objet spécifié Oid comme type d’attribut et d’une donnée ASN.1 encodée spécifiée comme valeur d’attribut.

Pkcs9AttributeObject(String, Byte[])

Initialise une nouvelle instance de la classe à l’aide Pkcs9AttributeObject d’une représentation sous forme de chaîne spécifiée d’un identificateur d’objet (OID) comme type d’attribut et d’une donnée encodée ASN.1 spécifiée comme valeur d’attribut.

Pkcs9AttributeObject()

Source:
Pkcs9AttributeObject.cs
Source:
Pkcs9AttributeObject.cs
Source:
Pkcs9AttributeObject.cs
Source:
Pkcs9AttributeObject.cs
Source:
Pkcs9AttributeObject.cs
Source:
Pkcs9AttributeObject.cs
Source:
Pkcs9AttributeObject.cs
Source:
Pkcs9AttributeObject.cs

Initialise une nouvelle instance de la classe Pkcs9AttributeObject.

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

S’applique à

Pkcs9AttributeObject(AsnEncodedData)

Source:
Pkcs9AttributeObject.cs
Source:
Pkcs9AttributeObject.cs
Source:
Pkcs9AttributeObject.cs
Source:
Pkcs9AttributeObject.cs
Source:
Pkcs9AttributeObject.cs
Source:
Pkcs9AttributeObject.cs
Source:
Pkcs9AttributeObject.cs
Source:
Pkcs9AttributeObject.cs

Initialise une nouvelle instance de la classe à l’aide Pkcs9AttributeObject d’un objet spécifié AsnEncodedData comme type d’attribut et valeur.

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)

Paramètres

asnEncodedData
AsnEncodedData

Objet qui contient le type d’attribut PKCS #9 et la valeur à utiliser.

Exceptions

La longueur du Value membre Oid du asnEncodedData membre est égale à zéro.

Le Oid membre est asnEncodedDatanull.

- ou -

Le Value membre du Oid membre asnEncodedData est null.

S’applique à

Pkcs9AttributeObject(Oid, Byte[])

Source:
Pkcs9AttributeObject.cs
Source:
Pkcs9AttributeObject.cs
Source:
Pkcs9AttributeObject.cs
Source:
Pkcs9AttributeObject.cs
Source:
Pkcs9AttributeObject.cs
Source:
Pkcs9AttributeObject.cs
Source:
Pkcs9AttributeObject.cs
Source:
Pkcs9AttributeObject.cs

Initialise une nouvelle instance de la classe à l’aide Pkcs9AttributeObject d’un objet spécifié Oid comme type d’attribut et d’une donnée ASN.1 encodée spécifiée comme valeur d’attribut.

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

Paramètres

oid
Oid

Objet qui représente le type d’attribut PKCS #9.

encodedData
Byte[]

Tableau de valeurs d’octets qui représente la valeur d’attribut PKCS #9.

S’applique à

Pkcs9AttributeObject(String, Byte[])

Source:
Pkcs9AttributeObject.cs
Source:
Pkcs9AttributeObject.cs
Source:
Pkcs9AttributeObject.cs
Source:
Pkcs9AttributeObject.cs
Source:
Pkcs9AttributeObject.cs
Source:
Pkcs9AttributeObject.cs
Source:
Pkcs9AttributeObject.cs
Source:
Pkcs9AttributeObject.cs

Initialise une nouvelle instance de la classe à l’aide Pkcs9AttributeObject d’une représentation sous forme de chaîne spécifiée d’un identificateur d’objet (OID) comme type d’attribut et d’une donnée encodée ASN.1 spécifiée comme valeur d’attribut.

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

Paramètres

oid
String

Représentation sous forme de chaîne d’un OID qui représente le type d’attribut PKCS #9.

encodedData
Byte[]

Tableau de valeurs d’octets qui contient la valeur d’attribut PKCS #9.

S’applique à