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

TDOMParser.ParseUri

Parses XML content from the specified URI into the XML document.

Declaration

Source position: laz2_xmlread.pas line 141

public procedure TDOMParser.ParseUri(

  const URI: DOMString;

  out ADoc: TXMLDocument

);

Arguments

URI

  

URI with the content parsed in the method.

ADoc

  

XML document updated in the method.

Description

ParseURI is a procedure used to read and process the XML content from the specified URI. ParseURI creates DOM nodes needed to represent the XML content, and adds them to the specified TXMLDocument.

ParseURI creates TXMLReader and TXMLCharSource class instances that are used to convert and process the XML content in URI. The value in URI is resolved to determine the absolute URI used when processing the XML content.

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