다음을 통해 공유


WebEncoders.Base64UrlDecode 메서드

정의

오버로드

Base64UrlDecode(String)

base64url로 인코딩된 문자열을 디코딩합니다.

Base64UrlDecode(String, Int32, Int32)

지정된 문자열의 base64url로 인코딩된 부분 문자열을 디코딩합니다.

Base64UrlDecode(String, Int32, Char[], Int32, Int32)

base64url로 인코딩된 input 를 로 디코딩합니다 byte[].

Base64UrlDecode(String)

Source:
WebEncoders.cs

base64url로 인코딩된 문자열을 디코딩합니다.

public:
 static cli::array <System::Byte> ^ Base64UrlDecode(System::String ^ input);
public static byte[] Base64UrlDecode (string input);
static member Base64UrlDecode : string -> byte[]
Public Shared Function Base64UrlDecode (input As String) As Byte()

매개 변수

input
String

디코딩할 base64url로 인코딩된 입력입니다.

반환

Byte[]

base64url로 디코딩된 입력 형식입니다.

설명

입력에는 공백이나 안쪽 여백 문자가 포함되어서는 안됩니다. FormatException 입력 형식이 잘못된 경우 을 throw합니다.

적용 대상

Base64UrlDecode(String, Int32, Int32)

Source:
WebEncoders.cs

지정된 문자열의 base64url로 인코딩된 부분 문자열을 디코딩합니다.

public:
 static cli::array <System::Byte> ^ Base64UrlDecode(System::String ^ input, int offset, int count);
public static byte[] Base64UrlDecode (string input, int offset, int count);
static member Base64UrlDecode : string * int * int -> byte[]
Public Shared Function Base64UrlDecode (input As String, offset As Integer, count As Integer) As Byte()

매개 변수

input
String

디코딩할 base64url로 인코딩된 입력을 포함하는 문자열입니다.

offset
Int32

디코딩을 시작할 위치 input 입니다.

count
Int32

디코딩할 의 input 문자 수입니다.

반환

Byte[]

base64url로 디코딩된 입력 형식입니다.

설명

입력에는 공백이나 안쪽 여백 문자가 포함되어서는 안됩니다. FormatException 입력 형식이 잘못된 경우 을 throw합니다.

적용 대상

Base64UrlDecode(String, Int32, Char[], Int32, Int32)

Source:
WebEncoders.cs

base64url로 인코딩된 input 를 로 디코딩합니다 byte[].

public:
 static cli::array <System::Byte> ^ Base64UrlDecode(System::String ^ input, int offset, cli::array <char> ^ buffer, int bufferOffset, int count);
public static byte[] Base64UrlDecode (string input, int offset, char[] buffer, int bufferOffset, int count);
static member Base64UrlDecode : string * int * char[] * int * int -> byte[]
Public Shared Function Base64UrlDecode (input As String, offset As Integer, buffer As Char(), bufferOffset As Integer, count As Integer) As Byte()

매개 변수

input
String

디코딩할 base64url로 인코딩된 입력을 포함하는 문자열입니다.

offset
Int32

디코딩을 시작할 위치 input 입니다.

buffer
Char[]

디코딩할 s를 Char저장할 스크래치 버퍼입니다. 배열은 Base64 안쪽 여백 문자뿐만 아니라 및 문자를 포함 bufferOffsetcount 할 수 있을 만큼 커야 합니다. 콘텐츠는 보존되지 않습니다.

bufferOffset
Int32

디코딩할 의 쓰기를 Char시작할 오프셋 buffer 입니다.

count
Int32

디코딩할 의 input 문자 수입니다.

반환

Byte[]

의 base64url로 디코딩된 형식입니다 input.

설명

입력에는 공백이나 안쪽 여백 문자가 포함되어서는 안됩니다. FormatException 입력 형식이 잘못된 경우 을 throw합니다.

적용 대상