System.Rtti.TMethodImplementationCallback

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TMethodImplementationCallback = reference to procedure(
UserData: Pointer;
const Args: TArray<TValue>;
out Result: TValue);

C++

__interface TMethodImplementationCallback  : public System::IInterface

Properties

Type Visibility Source Unit Parent
anonMethod
class
public
System.Rtti.pas
System.Rtti.hpp
System.Rtti System.Rtti

Description

Represents a reference to a method with general signature.

TMethodImplementationCallback points the implementation of a method. The TRttiMethod.CreateImplementation function requires a TMethodImplementationCallback to create an instance of TMethodImplementation.

TMethodImplementation uses TMethodImplementationCallback as the method body.

See Also