Data.DbxHTTPLayer.TDBXHTTPLayer.Write

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function Write(const Buffer: TArray<Byte>; const Offset: Integer; const Count: Integer): Integer; override;

C++

virtual int __fastcall Write(const System::DynamicArray<System::Byte> Buffer, const int Offset, const int Count);

Properties

Type Visibility Source Unit Parent
function public
Data.DbxHTTPLayer.pas
Data.DbxHTTPLayer.hpp
Data.DbxHTTPLayer TDBXHTTPLayer

Description

Performs the write operation for the given byte buffer.

The Write method performs the write operation for the byte buffer given through the Buffer parameter.

Offset specifies the location of the first byte to be written from. Count represents the expected byte count to be written. It is assumed that the buffer has enough capacity for it.

See Also