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