BerConverter.Decode(String, Byte[]) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
La méthode Decode(String, Byte[]) décode une représentation binaire des données, à l'aide de règles BER, afin de récupérer des données structurées.
public:
static cli::array <System::Object ^> ^ Decode(System::String ^ format, cli::array <System::Byte> ^ value);
public static object[] Decode (string format, byte[] value);
static member Decode : string * byte[] -> obj[]
Public Shared Function Decode (format As String, value As Byte()) As Object()
Paramètres
- format
- String
Chaîne de format.
- value
- Byte[]
Tableau de données BER.
Retours
Données décodées.
Exceptions
Le paramètre format
contient une référence null (Nothing
en Visual Basic).
Le paramètre format
contient un caractère non défini.
Le décodage sous-jacent échoue. Les règles de décodage incluent les éléments suivants.
Code | Résultat correspondant |
---|---|
'{' '}' '[' ']' 'n' 'x' | Aucun résultat correspondant |
'i' 'e' | int |
'b' | bool |
« a » | string |
'O' | byte[] |
'B' | byte[] contenant des chaînes binaires |
'v' | string[] |
'V' | byte[][] |