10 references to IntToHex
System.ServiceModel.Internals (10)
System\Runtime\UrlUtility.cs (10)
108sb.Append(IntToHex((ch >> 4) & 0xf)); 109sb.Append(IntToHex((ch) & 0xf)); 115sb.Append(IntToHex((ch >> 12) & 0xf)); 116sb.Append(IntToHex((ch >> 8) & 0xf)); 117sb.Append(IntToHex((ch >> 4) & 0xf)); 118sb.Append(IntToHex((ch) & 0xf)); 224expandedBytes[pos++] = (byte)IntToHex((b >> 4) & 0xf); 225expandedBytes[pos++] = (byte)IntToHex(b & 0x0f); 268expandedBytes[pos++] = (byte)IntToHex((b >> 4) & 0xf); 269expandedBytes[pos++] = (byte)IntToHex(b & 0x0f);