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에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET