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