Datasnap.Provider.TCustomProvider.DoAfterRowRequest

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type:
procedure
function
Visibility: protected
Source:
Datasnap.Provider.pas
Datasnap.Provider.hpp
Unit: Datasnap.Provider
Parent: TCustomProvider

Delphi

procedure DoAfterRowRequest(var OwnerData: OleVariant); virtual;

C++

virtual void __fastcall DoAfterRowRequest(System::OleVariant &OwnerData);

Description

Generates an AfterRowRequest event.

The RowRequest method calls DoAfterRowRequest to generate the AfterRowRequest event after fetching the requested data.

OwnerData supplies custom information to the AfterRowRequest event handler. This is the same as the outgoing OwnerData parameter of the BeforeRowRequest event handler. The AfterRowRequest event handler can change this value. The returned value is then passed to the client.

See Also