1 write to Length
System.Net.Http (1)
System\Net\Http\FormUrlEncodedContent.cs (1)
84builder.Length += charsWritten;
5 references to Length
System.Net.Http (5)
src\libraries\Common\src\System\Text\ValueStringBuilder.cs (1)
69/// Does not ensure there is a null char after <see cref="Length"/>
System\Net\Http\FormUrlEncodedContent.cs (4)
35if (builder.Length > 0) 47byte[] bytes = new byte[builder.Length]; 58while (!Uri.TryEscapeDataString(data, builder.RawChars.Slice(builder.Length), out charsWritten)) 66ReadOnlySpan<char> escapedChars = builder.RawChars.Slice(builder.Length, charsWritten);