Metodo System::Net::Sockets::NetworkStream::Write

NetworkStream::Write(const ArrayPtr<uint8_t>&, int32_t, int32_t) method

Scrive l’intervallo specificato di byte dall’array di byte specificato nel flusso.

void System::Net::Sockets::NetworkStream::Write(const ArrayPtr<uint8_t> &buffer, int32_t offset, int32_t size) override
ParametroTipoDescrizione
bufferconst ArrayPtr<uint8_t>&L’array contenente i byte da scrivere.
offsetint32_tL’offset in byte nell’array specificato.
sizeint32_tIl numero di elementi nel sottointervallo da scrivere.

Vedi anche

NetworkStream::Write(const System::Details::ArrayView<uint8_t>&, int32_t, int32_t) method

Scrive l’intervallo specificato di byte dall’array di byte specificato nel flusso.

void System::Net::Sockets::NetworkStream::Write(const System::Details::ArrayView<uint8_t> &buffer, int32_t offset, int32_t size) override
ParametroTipoDescrizione
bufferconst System::Details::ArrayView<uint8_t>&La vista dell’array contenente i byte da scrivere
offsetint32_tUn indice a base zero dell’elemento in buffer al quale inizia il sottointervallo da scrivere
sizeint32_tIl numero di elementi nel sottointervallo da scrivere

Vedi anche