10 writes to BytesTransferred
System.Net.Sockets (10)
System\Net\Sockets\SocketAsyncContext.Unix.cs (10)
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); 662SocketError error = context.SendToAsync(Buffer, 0, Buffer.Length, SocketFlags.None, Memory<byte>.Empty, ref BytesTransferred, Callback!, default); 1600BytesTransferred = sentBytes, 2002BytesTransferred = bytesSent 2037BytesTransferred = bytesSent 2066operation.BytesTransferred = bytesSent; 2115BytesTransferred = bytesSent 2146operation.BytesTransferred = bytesSent;
10 references to BytesTransferred
System.Net.Sockets (10)
System\Net\Sockets\SocketAsyncContext.Unix.cs (10)
362Callback!(BytesTransferred, SocketAddress, SocketFlags.None, ErrorCode); 380int bt = BytesTransferred; 408int bt = BytesTransferred; 674int bt = BytesTransferred; 1607sentBytes += operation.BytesTransferred; 2007bytesSent = operation.BytesTransferred; 2042bytesSent = operation.BytesTransferred; 2070bytesSent = operation.BytesTransferred; 2120bytesSent = operation.BytesTransferred; 2150bytesSent = operation.BytesTransferred;