12 references to IntToHex
System.Web (12)
UI\HTMLTextWriter.cs (2)
1302
Write(HttpEncoderUtility.
IntToHex
((ch >> 4) & 0xf));
1303
Write(HttpEncoderUtility.
IntToHex
((ch) & 0xf));
Util\HttpEncoder.cs (10)
664
expandedBytes[pos++] = (byte)HttpEncoderUtility.
IntToHex
((b >> 4) & 0xf);
665
expandedBytes[pos++] = (byte)HttpEncoderUtility.
IntToHex
(b & 0x0f);
709
expandedBytes[pos++] = (byte)HttpEncoderUtility.
IntToHex
((b >> 4) & 0xf);
710
expandedBytes[pos++] = (byte)HttpEncoderUtility.
IntToHex
(b & 0x0f);
741
sb.Append(HttpEncoderUtility.
IntToHex
((ch >> 4) & 0xf));
742
sb.Append(HttpEncoderUtility.
IntToHex
((ch) & 0xf));
747
sb.Append(HttpEncoderUtility.
IntToHex
((ch >> 12) & 0xf));
748
sb.Append(HttpEncoderUtility.
IntToHex
((ch >> 8) & 0xf));
749
sb.Append(HttpEncoderUtility.
IntToHex
((ch >> 4) & 0xf));
750
sb.Append(HttpEncoderUtility.
IntToHex
((ch) & 0xf));