API:Datasnap.DSSession.TDSSynchronizedLocalChannel.WriteLocalData

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: function
Visibility: public
Source:
Datasnap.DSSession.pas
Datasnap.DSSession.hpp
Unit: Datasnap.DSSession
Parent: TDSSynchronizedLocalChannel

Delphi

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

C++

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

Description

Sends bytes into the communication layer.

Datasnap.DSSession.TDSSynchronizedLocalChannel.WriteLocalData inherits from Data.DBXTransport.TDBXLocalChannel.WriteLocalData. All content below this line refers to Data.DBXTransport.TDBXLocalChannel.WriteLocalData.

Sends bytes into the communication layer.

The WriteLocalData method is used to send Count bytes into the communication layer specified as a byte array buffer, by the Buffer parameter, starting at the Offset index.

See Also