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