Soap.InvokeRegistry.TDataContext.GetDataPointer

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function  GetDataPointer(Index: Integer): Pointer;

C++

void * __fastcall GetDataPointer(int Index);

Properties

Type Visibility Source Unit Parent
function public
Soap.InvokeRegistry.pas
Soap.InvokeRegistry.hpp
Soap.InvokeRegistry TDataContext

Description

Returns a pointer from the internal cache of pointers.

GetDataPointer returns a pointer from the internal cache of pointers. This value is assigned by a call to the SetDataPointer method.

Index is the index of the desired pointer, where 0 is the first pointer, 1 is the second pointer, and so on.

Note: TDataContext does not actually allocate the memory to store these pointers. Descendant classes must initialize the internal dynamic array that TDataContext uses to store pointers.

See Also