CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
|
Service class. More...
#include <uri_shim.h>
Static Public Member Functions | |
static String | HexEscape (char16_t character) |
Converts character to escaped hex form. More... | |
static char16_t | HexUnescape (const String &pattern, int32_t &index) |
Converts character from escaped hex form. More... | |
static bool | IsHexEncoding (const String &pattern, int32_t index) |
Checks if given pattern is an escaped hex form. More... | |
static void | EscapeAsciiChar (char16_t ch, const System::ArrayPtr< char16_t > &to, int32_t &pos) |
Converts character to escaped hex form. More... | |
Service class.
|
static |
Converts character to escaped hex form.
ch | Character to convert. |
to | Output buffer. |
pos | Position in output buffer; gets advanced after encoding. |
|
static |
Converts character to escaped hex form.
character | Character to convert. |
|
static |
Converts character from escaped hex form.
pattern | String to read escaped hex form from. |
index | Offset in the given string. |
|
static |
Checks if given pattern is an escaped hex form.
pattern | String to read escaped hex form from. |
index | Offset in the given string. |