BerConverter.Decode(String, Byte[]) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
The Decode(String, Byte[]) method decodes a binary representation of the data, using BER, to retrieve structured data.
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()
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
ทํางานร่วมกับเราใน GitHub
แหล่งที่มาสำหรับเนื้อหานี้สามารถพบได้บน GitHub ซึ่งคุณยังสามารถสร้างและตรวจสอบปัญหาและคำขอดึงข้อมูลได้ สำหรับข้อมูลเพิ่มเติม ให้ดูคู่มือผู้สนับสนุนของเรา