Datasnap.Provider.TCustomProvider.DoAfterGetParams

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 DoAfterGetParams(var OwnerData: OleVariant); virtual;

C++

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

Description

Generates an AfterGetParams event.

The GetParams method calls DoAfterGetParams to generate the AfterGetParams event after fetching the current parameter values of the associated dataset.

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

See Also