1 write to _boundary
System.Net.Http (1)
System\Net\Http\MultipartContent.cs (1)
49_boundary = boundary;
10 references to _boundary
System.Net.Http (10)
System\Net\Http\MultipartContent.cs (10)
162WriteToStream(stream, "--" + _boundary + CrLf); 174WriteToStream(stream, CrLf + "--" + _boundary + "--" + CrLf); 206await EncodeStringToStreamAsync(stream, "--" + _boundary + CrLf, cancellationToken).ConfigureAwait(false); 224await EncodeStringToStreamAsync(stream, CrLf + "--" + _boundary + "--" + CrLf, cancellationToken).ConfigureAwait(false); 257streams[streamIndex++] = EncodeStringToNewStream("--" + _boundary + CrLf); 295streams[streamIndex] = EncodeStringToNewStream(CrLf + "--" + _boundary + "--" + CrLf); 312WriteToStream(stream, _boundary); 361long currentLength = DashDashLength + _boundary.Length + CrLfLength; 366currentLength += (_nestedContent.Count - 1) * (CrLfLength + DashDashLength + _boundary.Length + CrLfLength); 405currentLength += CrLfLength + DashDashLength + _boundary.Length + DashDashLength + CrLfLength;