6 writes to Next
System.Net.Sockets (6)
System\Net\Sockets\SocketAsyncContext.Unix.cs (6)
146
Next
= this;
878
operation.
Next
= _tail.Next;
879
_tail.
Next
= operation;
1120
nextOp = _tail.
Next
= op.Next;
1162
_tail.
Next
= op.Next;
1204
current.
Next
= current.Next.Next;
17 references to Next
System.Net.Sockets (17)
System\Net\Sockets\SocketAsyncContext.Unix.cs (17)
869
Debug.Assert(operation.
Next
== operation, "Expected operation.Next == operation");
878
operation.Next = _tail.
Next
;
964
op = _tail.
Next
;
1048
Debug.Assert(op == _tail.
Next
, "Operation is not at head of queue???");
1106
Debug.Assert(_tail.
Next
== op, "Queue modified while processing queue");
1120
nextOp = _tail.Next = op.
Next
;
1150
if (_tail.
Next
== op)
1162
_tail.Next = op.
Next
;
1163
_isNextOperationSynchronous = op.
Next
.Event != null;
1178
nextOp = _tail.
Next
;
1194
AsyncOperation current = _tail.
Next
;
1195
while (current.
Next
!= op)
1197
current = current.
Next
;
1200
if (current.
Next
== _tail)
1204
current.Next = current.
Next
.
Next
;
1234
op = op.
Next
;