다음을 통해 공유


BerConverter.Decode(String, Byte[]) 메서드

정의

Decode(String, Byte[]) 메서드는 구조적 데이터를 검색하기 위해 BER를 사용하여 데이터의 이진 표현을 디코딩합니다.

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

매개 변수

format
String

서식 문자열입니다.

value
Byte[]

BER 데이터의 배열입니다.

반환

Object[]

디코딩된 데이터입니다.

예외

format 매개 변수에 null 참조(Visual Basic의 경우 Nothing)가 포함된 경우

format 매개 변수에 정의되지 않은 문자가 포함된 경우

내부 디코딩에 실패한 경우. 디코딩 규칙은 다음과 같습니다.

코드 해당 결과
'{' '}' '[' ']' 'n' 'x' 해당 결과 없음
'i' 'e' int
'b' bool
'a' 문자열
'O' byte[]
'B' 비트 문자열을 포함하는 byte[]
'v' string[]
'V' byte[][]

적용 대상