3 writes to _size
System.Net.Http (3)
System\Net\Http\SocketsHttpHandler\ConnectionPool\RequestQueue.cs (3)
31
_size
= 0;
45
_size
++;
65
_size
--;
10 references to _size
System.Net.Http (10)
System\Net\Http\SocketsHttpHandler\ConnectionPool\RequestQueue.cs (10)
37
if (
_size
== _array.Length)
50
Debug.Assert(
_size
> 0);
71
if (
_size
== 0)
95
if (
_size
!= 0)
99
Array.Copy(_array, _head, newArray, 0,
_size
);
110
_tail =
_size
;
167
Debug.Assert(_attemptedConnectionsOffset <
_size
, $"{_attemptedConnectionsOffset} < {
_size
}");
180
public int Count =>
_size
;
182
public int RequestsWithoutAConnectionAttempt =>
_size
- _attemptedConnectionsOffset;