|
Terraria v1.4.4.9
Terraria source code documentation
|
Classes | |
| class | HtmlEntities |
| struct | UrlDecoder |
Static Public Member Functions | |
| static ? string | HtmlEncode (string? value) |
| static void | HtmlEncode (string? value, TextWriter output) |
| static ? string | HtmlDecode (string? value) |
| static void | HtmlDecode (string? value, TextWriter output) |
| static ? string | UrlEncode (string? value) |
| static ? byte[] | UrlEncodeToBytes (byte[]? value, int offset, int count) |
| static ? string | UrlDecode (string? encodedValue) |
| static ? byte[] | UrlDecodeToBytes (byte[]? encodedValue, int offset, int count) |
Static Private Member Functions | |
| static void | HtmlEncode (ReadOnlySpan< char > input, ref ValueStringBuilder output) |
| static void | HtmlDecode (ReadOnlySpan< char > input, ref ValueStringBuilder output) |
| static int | IndexOfHtmlEncodingChars (ReadOnlySpan< char > input) |
| static void | GetEncodedBytes (byte[] originalBytes, int offset, int count, byte[] expandedBytes) |
| static string | UrlDecodeInternal (string value, Encoding encoding) |
| static byte[] | UrlDecodeInternal (byte[] bytes, int offset, int count) |
| static void | ConvertSmpToUtf16 (uint smpChar, out char leadingSurrogate, out char trailingSurrogate) |
| static int | GetNextUnicodeScalarValueFromUtf16Surrogate (ReadOnlySpan< char > input, ref int index) |
| static bool | IsUrlSafeChar (char ch) |
| static bool | ValidateUrlEncodingParameters (byte[] bytes, int offset, int count) |
| static int | IndexOfHtmlDecodingChars (ReadOnlySpan< char > input) |
Definition at line 11 of file WebUtility.cs.