HttpServerUtility.UrlTokenEncode(Byte[]) 方法

定义

将一个字节数组编码为使用 Base 64 编码方案的等效字符串表示形式,Base 64 是一种适于通过 URL 传输数据的编码方案。

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

参数

input
Byte[]

要编码的字节数组。

返回

String

如果字节数组的长度大于 1,则为包含编码后的标记的字符串;否则为空字符串 ("")。

例外

input 参数的值为 null

注解

该方法 UrlTokenEncode 将字节数组转换为使用 base 64 位数字编码的等效字符串表示形式。 生成的字符串令牌可以在 URL 上传输。

如果input参数的长度小于 1,则UrlTokenEncode返回空字符串。

适用于

另请参阅