6 writes to Count
System.Net.Sockets (6)
System\Net\Sockets\SocketAsyncContext.Unix.cs (6)
374
return SocketPal.TryCompleteSendTo(context._socket, Buffer.Span, null, ref bufferIndex, ref Offset, ref
Count
, Flags, SocketAddress.Span, ref BytesTransferred, out ErrorCode);
402
return SocketPal.TryCompleteSendTo(context._socket, default(ReadOnlySpan<byte>), Buffers, ref BufferIndex, ref Offset, ref
Count
, Flags, SocketAddress.Span, ref BytesTransferred, out ErrorCode);
431
return SocketPal.TryCompleteSendTo(context._socket, new ReadOnlySpan<byte>(BufferPtr, bufferLength), null, ref bufferIndex, ref Offset, ref
Count
, Flags, SocketAddress.Span, ref BytesTransferred, out ErrorCode);
1962
Count
= count,
1997
Count
= count,
2026
operation.
Count
= count;
1 reference to Count
System.Net.Sockets (1)
System\Net\Sockets\SocketAsyncContext.Unix.cs (1)
430
int bufferLength = Offset +
Count
; // TryCompleteSendTo expects the entire buffer, which it then indexes into with the ref Offset and ref Count arguments