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)
164stream.Write(_startBoundaryBytes); 208await stream.WriteAsync(_startBoundaryBytes, cancellationToken).ConfigureAwait(false); 259streams[streamIndex++] = new MemoryStream(_startBoundaryBytes, writable: false); 314stream.Write(_startBoundaryBytes); 351long currentLength = _startBoundaryBytes.Length; 356currentLength += (_nestedContent.Count - 1) * (CrLfBytes.Length + _startBoundaryBytes.Length);