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); 1561BytesTransferred = sentBytes, 1945BytesTransferred = bytesSent 1978BytesTransferred = bytesSent 2007operation.BytesTransferred = bytesSent; 2054BytesTransferred = bytesSent 2085operation.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; 1568sentBytes += operation.BytesTransferred; 1950bytesSent = operation.BytesTransferred; 1983bytesSent = operation.BytesTransferred; 2011bytesSent = operation.BytesTransferred; 2059bytesSent = operation.BytesTransferred; 2089bytesSent = operation.BytesTransferred;