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); 1574BytesTransferred = sentBytes, 1970BytesTransferred = bytesSent 2005BytesTransferred = bytesSent 2034operation.BytesTransferred = bytesSent; 2083BytesTransferred = bytesSent 2114operation.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; 1581sentBytes += operation.BytesTransferred; 1975bytesSent = operation.BytesTransferred; 2010bytesSent = operation.BytesTransferred; 2038bytesSent = operation.BytesTransferred; 2088bytesSent = operation.BytesTransferred; 2118bytesSent = operation.BytesTransferred;