HttpWriter.WriteBytes(Byte[], Int32, Int32) Method

Definition

Sends a stream of bytes with the specified starting position and number of bytes to the HTTP output stream.

public:
 void WriteBytes(cli::array <System::Byte> ^ buffer, int index, int count);
public void WriteBytes (byte[] buffer, int index, int count);
member this.WriteBytes : byte[] * int * int -> unit
Public Sub WriteBytes (buffer As Byte(), index As Integer, count As Integer)

Parameters

buffer
Byte[]

The memory buffer containing the bytes to send to the HTTP output stream.

index
Int32

The buffer position of the first byte to send.

count
Int32

The number of bytes to send, beginning at the byte position specified by index.

Applies to