Receives the specified amount of data from a connected TlsSocket into a specific location of the receive buffer and using the supplied flags.

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

Syntax

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

Parameters

buffer
Type: array<System..::..Byte>[]()[][]
The storage location for the received data.
offset
Type: System..::..Int32
The position in the buffer at which to store the received data.
size
Type: System..::..Int32
The number of bytes to receive.

Return Value

The number of bytes received.

Version Information

.NET Compact Framework

Supported in: 3.9, 3.5

See Also