1 write to _startBoundaryBytes
System.Net.Http (1)
System\Net\Http\MultipartContent.cs (1)
50
_startBoundaryBytes
= [.. DashDashBytes, .. boundaryBytes, .. CrLfBytes];
6 references to _startBoundaryBytes
System.Net.Http (6)
System\Net\Http\MultipartContent.cs (6)
164
stream.Write(
_startBoundaryBytes
);
208
await stream.WriteAsync(
_startBoundaryBytes
, cancellationToken).ConfigureAwait(false);
259
streams[streamIndex++] = new MemoryStream(
_startBoundaryBytes
, writable: false);
314
stream.Write(
_startBoundaryBytes
);
351
long currentLength =
_startBoundaryBytes
.Length;
356
currentLength += (_nestedContent.Count - 1) * (CrLfBytes.Length +
_startBoundaryBytes
.Length);