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
Colaborați cu noi pe GitHub
Sursa pentru acest conținut poate fi găsită pe GitHub, unde puteți, de asemenea, să creați și să consultați probleme și solicitări de tragere. Pentru mai multe informații, consultați ghidul nostru pentru colaboratori.