WebEncoders.Base64UrlDecode 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
Base64UrlDecode(String) |
譯碼 base64url 編碼的字串。 |
Base64UrlDecode(String, Int32, Int32) |
譯碼指定字串的base64url編碼子字串。 |
Base64UrlDecode(String, Int32, Char[], Int32, Int32) |
將 base64url 編碼 |
Base64UrlDecode(String)
譯碼 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。
適用於
Base64UrlDecode(String, Int32, Int32)
譯碼指定字串的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。
適用於
Base64UrlDecode(String, Int32, Char[], Int32, Int32)
將 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
中應該開始譯碼的位置。
- count
- Int32
要譯碼的 input
字元數。
傳回
Byte[]
input
的base64url譯碼形式。
備註
輸入不得包含任何空格元或填補字元。 如果輸入格式不正確,則會擲回 FormatException。