[Overview][Types][Classes][Procedures and functions][Index] Reference for unit 'Laz2_XMLRead' (#lazutils)

TDOMParser.Parse

Parses the input source and updates the specified XML document.

Declaration

Source position: laz2_xmlread.pas line 140

public procedure TDOMParser.Parse(

  Src: TXMLInputSource;

  out ADoc: TXMLDocument

);

Arguments

Src

  

XML input source with content parsed in the method.

ADoc

  

XML Document updated in the method.

Description

Parse is a procedure used to read and process the XML content in the specified XML input source. Parse creates DOM nodes needed to represent the XML content, and adds them to the specified TXMLDocument.

Parse creates TXMLReader and TXMLCharSource class instances that are used to convert and process the XML content in Src.

ADoc is an output parameter that represents the TXMLDocument created and updated in the XML reader class instance.

See also

laz2_dom.TXMLDocument

  

Implements an XML Document.


Version 4.0 Generated 2025-05-03 Home