6 references to HexUpperChars
System.Web.Services (6)
System\Web\Services\Protocols\Scalars.cs (6)
155sb.Append(HexUpperChars[(c >> 4) & 0xf]); 156sb.Append(HexUpperChars[(c) & 0xf]); 161sb.Append(HexUpperChars[(c >> 12) & 0xf]); 162sb.Append(HexUpperChars[(c >> 8) & 0xf]); 163sb.Append(HexUpperChars[(c >> 4) & 0xf]); 164sb.Append(HexUpperChars[(c) & 0xf]);