Method | Description | |
---|---|---|
AppendBase16 ( this StringBuilder, byte Data ) : void |
Convert data to Base16 (hexadecimal) and append to the specified stringbuilder.
|
|
AppendBase32 ( this StringBuilder, byte Data ) : void |
Convert data to Base16 (hexadecimal) and append to the specified stringbuilder.
|
|
AppendBase64 ( this StringBuilder, byte Data ) : void |
Convert data to Base16 (hexadecimal) and append to the specified stringbuilder.
|
|
AppendBase64URL ( this StringBuilder, byte Data ) : void |
Convert data to Base16 (hexadecimal) and append to the specified stringbuilder.
|
|
Base16 ( this Data ) : string |
Convert data to Base16 (hexadecimal);
|
|
Base32 ( this Data ) : string | ||
Base64 ( this Data ) : string | ||
Base64URL ( this Data ) : string | ||
CountUTF8 ( this Text ) : int |
Count the number of bytes that are required to encode a string in UTF8.
|
|
IsBase64 ( this c ) : bool | ||
ToASCII ( this c ) : char | ||
ToUTF8 ( this Text ) : byte[] |
Convert a string to a UTF byte array
|
|
ToUTF8 ( this Text, byte Buffer, int Position ) : int |
Convert a string to a UTF byte array
|
|
UDF ( this Data, int Precision ) : string |
public static AppendBase16 ( this StringBuilder, byte Data ) : void | ||
StringBuilder | this | |
Data | byte | The data to be encoded. |
return | void |
public static AppendBase32 ( this StringBuilder, byte Data ) : void | ||
StringBuilder | this | |
Data | byte | The data to be encoded. |
return | void |
public static AppendBase64 ( this StringBuilder, byte Data ) : void | ||
StringBuilder | this | |
Data | byte | The data to be encoded. |
return | void |
public static AppendBase64URL ( this StringBuilder, byte Data ) : void | ||
StringBuilder | this | |
Data | byte | The data to be encoded. |
return | void |
public static Base16 ( this Data ) : string | ||
Data | this | The data to be encoded. |
return | string |
public static Base64URL ( this Data ) : string | ||
Data | this | |
return | string |
public static ToUTF8 ( this Text, byte Buffer, int Position ) : int | ||
Text | this | |
Buffer | byte | |
Position | int | |
return | int |
public static UDF ( this Data, int Precision ) : string | ||
Data | this | |
Precision | int | |
return | string |