HttpWriter.WriteBytes(Byte[], Int32, Int32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Samarbeta med oss på GitHub
Källan för det här innehållet finns på GitHub, där du även kan skapa och granska ärenden och pull-begäranden. Se vår deltagarguide för mer information.