10 references to IntToHex
System.ServiceModel.Primitives (10)
Internals\System\Runtime\UrlUtility.cs (10)
126sb.Append(IntToHex((ch >> 4) & 0xf)); 127sb.Append(IntToHex((ch) & 0xf)); 133sb.Append(IntToHex((ch >> 12) & 0xf)); 134sb.Append(IntToHex((ch >> 8) & 0xf)); 135sb.Append(IntToHex((ch >> 4) & 0xf)); 136sb.Append(IntToHex((ch) & 0xf)); 236expandedBytes[pos++] = (byte)IntToHex((b >> 4) & 0xf); 237expandedBytes[pos++] = (byte)IntToHex(b & 0x0f); 280expandedBytes[pos++] = (byte)IntToHex((b >> 4) & 0xf); 281expandedBytes[pos++] = (byte)IntToHex(b & 0x0f);