9 references to DecodeHexChars
System.Private.Uri (9)
System\IriHelper.cs (1)
90
ch = UriHelper.
DecodeHexChars
(span[i + 1], span[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)
1452
char ret = UriHelper.
DecodeHexChars
(pattern[index + 1], pattern[index + 2]);
4201
if ((uint)(i + 2) < (uint)span.Length && (c = UriHelper.
DecodeHexChars
(span[i + 1], span[i + 2])) != c_DummyChar)
4420
char decoded = UriHelper.
DecodeHexChars
(chars[i + 1], chars[i + 2]);
System\UriExt.cs (1)
200
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]);