Receives data from a connected ProxySocket.

Namespace:  Rebex.Net
Assembly:  Rebex.Networking (in Rebex.Networking.dll)

Syntax

Visual Basic
Public Function Receive ( _
	buffer As Byte() _
) As Integer
C#
public int Receive(
	byte[] buffer
)

Parameters

buffer
Type: array<System..::..Byte>[]()[][]
The storage location for the received data.

Return Value

The number of bytes received.

Remarks

Prior to receiving data, the socket must be connected using either a call to Connect(EndPoint) method or a call to Listen(ISocket) and Accept()()()() methods.

Version Information

.NET Compact Framework

Supported in: 3.9, 3.5

See Also