System.Classes.TBaseAsyncResult.Dispatch

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

class procedure Dispatch(const AsyncResult: TBaseAsyncResult); reintroduce; static; inline;

C++

static void __fastcall Dispatch(TBaseAsyncResult* const AsyncResult);

Properties

Type Visibility Source Unit Parent
procedure
function
public
System.Classes.pas
System.Classes.hpp
System.Classes TBaseAsyncResult

Description

Descendants (such as TControl) call this method in order to call the asynchronous method as a result of a Windows message.

Dispatch expects one parameter, AsyncResult. Dispatch calls DoAsyncDispatch method of the specified AsyncResult parameter.

See Also