Implemented interface member:
method
TryFormat
System.IUtf8SpanFormattable.TryFormat(System.Span<System.Byte>, out System.Int32, System.ReadOnlySpan<System.Char>, System.IFormatProvider)
9 references to TryFormat
ILCompiler.Compiler (3)
Compiler\UnixNodeMangler.cs (1)
28
mangledJustTypeName.Length.
TryFormat
(typeNameLengthStr, out int written);
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\ObjectWriter.cs (1)
711
bool b = number.
TryFormat
(buffer, out int bytesWritten);
src\runtime\src\coreclr\tools\Common\Internal\Text\Utf8StringBuilder.cs (1)
96
if (value.
TryFormat
(buffer, out int bytesWritten))
ILCompiler.ReadyToRun (2)
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\ObjectWriter.cs (1)
711
bool b = number.
TryFormat
(buffer, out int bytesWritten);
src\runtime\src\coreclr\tools\Common\Internal\Text\Utf8StringBuilder.cs (1)
96
if (value.
TryFormat
(buffer, out int bytesWritten))
System.Net.Http (2)
System\Net\Http\SocketsHttpHandler\HttpConnection.cs (2)
1526
if (value.
TryFormat
(_writeBuffer.AvailableSpan, out int bytesWritten, "X"))
1536
bool formatted = value.
TryFormat
(temp, out bytesWritten, "X");
System.Private.CoreLib (1)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Globalization\DateTimeFormat.cs (1)
781
fraction.
TryFormat
(Unsafe.BitCast<Span<TChar>, Span<byte>>(chars), out charCount, fractionFormat, CultureInfo.InvariantCulture);
System.Runtime.Numerics (1)
System\Number.BigInteger.cs (1)
848
spanSuccess = value._sign.
TryFormat
(Unsafe.BitCast<Span<TChar>, Span<byte>>(destination), out charsWritten, formatSpan, info);