Implemented interface member:
method
TryFormat
System.IUtf8SpanFormattable.TryFormat(System.Span<System.Byte>, out System.Int32, System.ReadOnlySpan<System.Char>, System.IFormatProvider)
3 references to TryFormat
System.Net.Http (2)
System\Net\Http\SocketsHttpHandler\HttpConnection.cs (2)
1483if (value.TryFormat(_writeBuffer.AvailableSpan, out int bytesWritten, "X")) 1493bool formatted = value.TryFormat(temp, out bytesWritten, "X");
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Globalization\DateTimeFormat.cs (1)
781fraction.TryFormat(MemoryMarshal.Cast<TChar, byte>(chars), out charCount, fractionFormat, CultureInfo.InvariantCulture);