9 references to DecodeHexChars
System.Private.Uri (9)
System\IriHelper.cs (1)
94
ch = UriHelper.
DecodeHexChars
(pInput[i + 1], pInput[i + 2]);
System\PercentEncodingHelper.cs (2)
18
Debug.Assert(UriHelper.
DecodeHexChars
(input[1], input[2]) != Uri.c_DummyChar);
19
Debug.Assert(UriHelper.
DecodeHexChars
(input[1], input[2]) >= 128);
System\Uri.cs (3)
1456
char ret = UriHelper.
DecodeHexChars
(pattern[index + 1], pattern[index + 2]);
4262
if (i + 2 < end && (c = UriHelper.
DecodeHexChars
(str[i + 1], str[i + 2])) != c_DummyChar)
4487
char decoded = UriHelper.
DecodeHexChars
(chars[i + 1], chars[i + 2]);
System\UriExt.cs (1)
241
char value = UriHelper.
DecodeHexChars
(data[i + 1], data[i + 2]);
System\UriHelper.cs (2)
325
char unescaped =
DecodeHexChars
(chars[i + 1], chars[i + 2]);
396
ch =
DecodeHexChars
(chars[i + 1], chars[i + 2]);