Data.Cloud.CloudAPI.GetFirstMatchingChildNode

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function GetFirstMatchingChildNode(Parent: IXMLNode; ChildName: string): IXMLNode;

C++

extern DELPHI_PACKAGE Xml::Xmlintf::_di_IXMLNode __fastcall GetFirstMatchingChildNode(Xml::Xmlintf::_di_IXMLNode Parent, System::UnicodeString ChildName);

Properties

Type Visibility Source Unit Parent
function public
Data.Cloud.CloudAPI.pas
Data.Cloud.CloudAPI.hpp
Data.Cloud.CloudAPI Data.Cloud.CloudAPI

Description

Helper function that returns the first child node of the given name.

GetFirstMatchingChildNode returns the first matching child node, or nil if none is found.

The following table shows the significance of the parameters for both the overloaded methods:

Parameter Description

Parent

The parent node to get the child nodes from

ChildName

The name of the child node to find


See Also