6 writes to Next
System.Net.Sockets (6)
System\Net\Sockets\SocketAsyncContext.Unix.cs (6)
146
Next
= this;
880
operation.
Next
= _tail.Next;
881
_tail.
Next
= operation;
1122
nextOp = _tail.
Next
= op.Next;
1164
_tail.
Next
= op.Next;
1206
current.
Next
= current.Next.Next;
17 references to Next
System.Net.Sockets (17)
System\Net\Sockets\SocketAsyncContext.Unix.cs (17)
871
Debug.Assert(operation.
Next
== operation, "Expected operation.Next == operation");
880
operation.Next = _tail.
Next
;
966
op = _tail.
Next
;
1050
Debug.Assert(op == _tail.
Next
, "Operation is not at head of queue???");
1108
Debug.Assert(_tail.
Next
== op, "Queue modified while processing queue");
1122
nextOp = _tail.Next = op.
Next
;
1152
if (_tail.
Next
== op)
1164
_tail.Next = op.
Next
;
1165
_isNextOperationSynchronous = op.
Next
.Event != null;
1180
nextOp = _tail.
Next
;
1196
AsyncOperation current = _tail.
Next
;
1197
while (current.
Next
!= op)
1199
current = current.
Next
;
1202
if (current.
Next
== _tail)
1206
current.Next = current.
Next
.
Next
;
1236
op = op.
Next
;