Datasnap.Win.SConnect.IDataBlock.Memory

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Memory: Pointer read GetMemory;

C++

__property void * Memory = {read=GetMemory};

Properties

Type Visibility Source Unit Parent
property public
Datasnap.Win.SConnect.pas
Datasnap.Win.SConnect.hpp
Datasnap.Win.SConnect IDataBlock

Description

Points to a buffer from which data is read or to which data is written.

Memory provides access to the buffer that contains data that is read or written. Memory includes a reserved area (of size BytesReserved) for internal information such as the value of Signature,

Note: When implementing the Receive and Send methods of the ITransport interface, component writers should read directly from and write directly to Memory, rather than using the Read and Write methods. Otherwise, the information in the reserved area will not be sent to or from the application server.

See Also