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 con nosotros en GitHub
El origen de este contenido se puede encontrar en GitHub, donde también puede crear y revisar problemas y solicitudes de incorporación de cambios. Para más información, consulte nuestra guía para colaboradores.