SocketAsyncEventArgs.BytesTransferred Property

Definition

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.

Applies to

See also