Xml.xmldom.TAsyncEventHandler

From RAD Studio API Documentation
Jump to: navigation, search


Delphi

TAsyncEventHandler = procedure(Sender: TObject; AsyncLoadState: Integer) of Object;

C++

typedef void __fastcall (__closure *TAsyncEventHandler)(System::TObject* Sender, int AsyncLoadState);

Properties

Type Visibility Source Unit Parent
type
typedef
public
Xml.Xmldom.pas
Xml.xmldom.hpp
Xml.xmldom Xml.xmldom

Description

TAsyncEventHandler is the type of event handlers that respond when the AsyncLoadState of an XML document changes.

TAsyncEventHandler is the type for event handlers that respond at various stages during the asynchronous parsing of an XML document.

Sender is the TXMLDocument object that receives the event.

AsyncLoadState is an integer that indicates the current stage of the parsing process. Its value is vendor-specific, and corresponds to the document's AsyncLoadState property.

See Also