System.Rtti.TVirtualMethodInterceptor.DoAfter

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure DoAfter(Instance: TObject; Method: TRttiMethod; const Args: TArray<TValue>;  var Result: TValue);

C++

void __fastcall DoAfter(System::TObject* Instance, TRttiMethod* Method, const System::DynamicArray<TValue> Args, TValue &Result);

Properties

Type Visibility Source Unit Parent
procedure
function
protected
System.Rtti.pas
System.Rtti.hpp
System.Rtti TVirtualMethodInterceptor

Description

Invokes the OnAfter event.

DoAfter is a protected virtual method that corresponds to the OnAfter event. When deriving from TVirtualMethodInterceptor, it may make more sense to override this method rather than subscribe to the OnAfter event, since users of the derived class may also want to subscribe to the same event.

See Also