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