Send Method (Byte[], Int32, Int32)

HttpServer.dll

Send data using the stream

Namespace:  HttpServer
Assembly:  HttpServer (in HttpServer.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public void Send(
	byte[] buffer,
	int offset,
	int size
)
Visual Basic (Declaration)
Public Sub Send ( _
	buffer As Byte(), _
	offset As Integer, _
	size As Integer _
)
Visual C++
public:
void Send(
	array<unsigned char>^ buffer, 
	int offset, 
	int size
)

Parameters

buffer
Type: array< System..::.Byte >[]()[]
Contains data to send
offset
Type: System..::.Int32
Start position in buffer
size
Type: System..::.Int32
number of bytes to send

Exceptions

See Also