Data.DbxHTTPLayer.TDBXHTTPLayer.Write

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: function
Visibility: public
Source:
Data.DbxHTTPLayer.pas
Data.DbxHTTPLayer.hpp
Unit: Data.DbxHTTPLayer
Parent: TDBXHTTPLayer

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);

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