11 references to EscapedAscii
System (11)
net\System\IriHelper.cs (2)
164ch = UriHelper.EscapedAscii(pInput[next + 1], pInput[next + 2]); 210ch = UriHelper.EscapedAscii(pInput[next + 1], pInput[next + 2]);
net\System\URI.cs (5)
1504char ret = UriHelper.EscapedAscii(pattern[index + 1], pattern[index + 2]); 1539if ((pattern[index] == '%') && UriHelper.EscapedAscii(pattern[index + 1], pattern[index + 2]) != c_DummyChar) { 4538if (i + 2 < end && (c = UriHelper.EscapedAscii(str[i + 1], str[i + 2])) != c_DummyChar) 4750char ch = UriHelper.EscapedAscii(*pch++, *pch++); 4762ch = UriHelper.EscapedAscii((*pnew++ = *pch++), (*pnew++ = *pch++));
net\System\UriExt.cs (1)
318char ch = UriHelper.EscapedAscii(tempPtr[i + 1], tempPtr[i + 2]);
net\System\UriHelper.cs (3)
185if(i + 2 < end && EscapedAscii(pStr[i+1], pStr[i+2]) != Uri.c_DummyChar) 306ch = EscapedAscii(pStr[next+1], pStr[next+2]); 459ch = EscapedAscii(pStr[next+1], pStr[next+2]);