9 references to DecodeHexChars
System.Private.Uri (9)
System\IriHelper.cs (1)
105
ch = UriHelper.
DecodeHexChars
(pInput[i + 1], pInput[i + 2]);
System\PercentEncodingHelper.cs (2)
20
Debug.Assert(UriHelper.
DecodeHexChars
(input[1], input[2]) != Uri.c_DummyChar);
21
Debug.Assert(UriHelper.
DecodeHexChars
(input[1], input[2]) >= 128);
System\Uri.cs (4)
1425
char ret = UriHelper.
DecodeHexChars
(pattern[index + 1], pattern[index + 2]);
4253
if (i + 2 < end && (c = UriHelper.
DecodeHexChars
(str[i + 1], str[i + 2])) != c_DummyChar)
4495
char ch = UriHelper.
DecodeHexChars
(*pch++, *pch++);
4507
ch = UriHelper.
DecodeHexChars
((*pnew++ = *pch++), (*pnew++ = *pch++));
System\UriExt.cs (1)
246
char value = UriHelper.
DecodeHexChars
(data[i + 1], data[i + 2]);
System\UriHelper.cs (1)
391
ch =
DecodeHexChars
(pStr[next + 1], pStr[next + 2]);