BerConverter.Decode(String, Byte[]) Method

Definition

The Decode(String, Byte[]) method decodes a binary representation of the data, using BER, to retrieve structured data.

public static object[] Decode (string format, byte[] value);

Parameters

format
String

The format string.

value
Byte[]

An array of BER data.

Returns

Object[]

The decoded data.

Exceptions

The format parameter contains a null reference (Nothing in Visual Basic).

The format parameter contains an undefined character.

The underlying decoding fails. The decoding rules include the following.

Code Corresponding Result
'{' '}' '[' ']' 'n' 'x' No corresponding result
'i' 'e' int
'b' bool
'a' string
'O' byte[]
'B' byte[] containing bit strings
'v' string[]
'V' byte[][]

Applies to

Produkt Versjoner
.NET 6 (package-provided), 7 (package-provided), 8 (package-provided), 9 (package-provided)
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7 (package-provided), 4.7, 4.7.1 (package-provided), 4.7.1, 4.7.2 (package-provided), 4.7.2, 4.8 (package-provided), 4.8, 4.8.1
.NET Standard 2.0 (package-provided)