SocketAsyncEventArgs.BytesTransferred Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the number of bytes transferred in the socket operation.
public:
property int BytesTransferred { int get(); };
public int BytesTransferred { get; }
member this.BytesTransferred : int
Public ReadOnly Property BytesTransferred As Integer
Property Value
An Int32 that contains the number of bytes transferred in the socket operation.
Remarks
This property provides the number of bytes transferred in an asynchronous socket operation that can receive or send data. If zero is returned from a read operation, the remote end has closed the connection.
This property is set by all asynchronous socket operations except the Socket.DisconnectAsync method.