20 references to Casing
System.Private.CoreLib (20)
src\libraries\Common\src\System\HexConverter.cs (13)
75public static void ToBytesBuffer(byte value, Span<byte> buffer, int startingIndex = 0, Casing casing = Casing.Upper) 85public static void ToCharsBuffer(byte value, Span<char> buffer, int startingIndex = 0, Casing casing = Casing.Upper) 118private static void EncodeTo_Vector128<TChar>(ReadOnlySpan<byte> source, Span<TChar> destination, Casing casing) 125Vector128<byte> hexMap = casing == Casing.Upper ? 185public static void EncodeToUtf8(ReadOnlySpan<byte> source, Span<byte> utf8Destination, Casing casing = Casing.Upper) 202public static void EncodeToUtf16(ReadOnlySpan<byte> source, Span<char> destination, Casing casing = Casing.Upper) 219public static string ToString(ReadOnlySpan<byte> bytes, Casing casing = Casing.Upper) 250public Casing Casing { get; set; }
src\libraries\Common\src\System\Reflection\AssemblyNameFormatter.cs (1)
87HexConverter.EncodeToUtf16(keyOrToken, vsb.AppendSpan(keyOrToken.Length * 2), HexConverter.Casing.Lower);
src\libraries\System.Private.CoreLib\src\System\ApplicationId.cs (1)
57HexConverter.EncodeToUtf16(_publicKeyToken, sb.AppendSpan(2 * _publicKeyToken.Length), HexConverter.Casing.Upper);
src\libraries\System.Private.CoreLib\src\System\Convert.cs (4)
3160return HexConverter.ToString(bytes, HexConverter.Casing.Upper); 3255return HexConverter.ToString(bytes, HexConverter.Casing.Lower); 3276HexConverter.EncodeToUtf16(source, destination, HexConverter.Casing.Lower); 3299HexConverter.EncodeToUtf8(source, utf8Destination, HexConverter.Casing.Lower);
src\libraries\System.Private.CoreLib\src\System\Reflection\AssemblyName.cs (1)
376HexConverter.ToCharsBuffer(ch, vsb.AppendSpan(2), 0, HexConverter.Casing.Upper);