Datasnap.Win.SConnect.IDataIntercept.DataIn

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure DataIn(const Data: IDataBlock); stdcall;

C++

virtual void __stdcall DataIn(const _di_IDataBlock Data) = 0 ;

Properties

Type Visibility Source Unit Parent
procedure
function
public
Datasnap.Win.SConnect.pas
Datasnap.Win.SConnect.hpp
Datasnap.Win.SConnect IDataIntercept

Description

Undoes the transformation applied by the DataOut method.

Call DataIn to undo any transformations that were applied to information received by the connection. For example, use this method to decrypt or decompress data.

The Data parameter is an IDataBlock interface to the data that was received by the socket connection component. Use the properties and methods of IDataBlock to reverse the transformation that was applied by the DataOut method.

Warning: Do not transform the reserved bytes in the data block.

See Also