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