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); 1569BytesTransferred = sentBytes, 1965BytesTransferred = bytesSent 2000BytesTransferred = bytesSent 2029operation.BytesTransferred = bytesSent; 2078BytesTransferred = bytesSent 2109operation.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; 1576sentBytes += operation.BytesTransferred; 1970bytesSent = operation.BytesTransferred; 2005bytesSent = operation.BytesTransferred; 2033bytesSent = operation.BytesTransferred; 2083bytesSent = operation.BytesTransferred; 2113bytesSent = operation.BytesTransferred;