Sends the specified amount of data to the remote connection end, starting at the indicated location in the data and using the supplied flags.

Namespace:  Rebex.TerminalEmulation
Assembly:  Rebex.Terminal (in Rebex.Terminal.dll)

Syntax

Visual Basic
Public MustOverride Function Send ( _
	buffer As Byte(), _
	offset As Integer, _
	count As Integer _
) As Integer
C#
public abstract int Send(
	byte[] buffer,
	int offset,
	int count
)

Parameters

buffer
Type: array<System..::..Byte>[]()[][]
The data to be sent.
offset
Type: System..::..Int32
The position in the data buffer to begin sending data.
count
Type: System..::..Int32
The number of bytes to send.

Return Value

The number of bytes sent.

Version Information

.NET Compact Framework

Supported in: 3.9, 3.5

See Also