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
Colaborar conosco no GitHub
A fonte deste conteúdo pode ser encontrada no GitHub, onde você também pode criar e revisar problemas e solicitações de pull. Para obter mais informações, confira o nosso guia para colaboradores.