2 writes to _count
System.Net.Http (2)
System\Net\Http\ByteArrayContent.cs (2)
22
_count
= content.Length;
37
_count
= count;
4 references to _count
System.Net.Http (4)
System\Net\Http\ByteArrayContent.cs (4)
41
stream.Write(_content, _offset,
_count
);
53
stream.WriteAsync(_content, _offset,
_count
, cancellationToken);
57
length =
_count
;
71
internal MemoryStream CreateMemoryStreamForByteArray() => new MemoryStream(_content, _offset,
_count
, writable: false);