Back to Adaptive Vision Library website

You are here: Start » Function Reference » Xml » AccessXmlNode

AccessXmlNode


This is Filter Equivalent. This function may be present in generated code, but should not be used in hand-written code.

Header:STD.h
Namespace:avl

Gets information from the XmlNode object.

Syntax

void avl::AccessXmlNode
(
	const avl::XmlNode& inNode,
	atl::Array<avl::XmlNode>& outChildren,
	atl::Array<atl::String>& outAttributeNames,
	atl::Array<atl::String>& outAttributeValues,
	atl::String& outName,
	atl::String& outText
)

Parameters

Name Type Default Description
inNode const XmlNode&
outChildren Array<XmlNode>& Children nodes of the inNode.
outAttributeNames Array<String>& List of attributes names.
outAttributeValues Array<String>& List of attributes values.
outName String& Node name.
outText String& Text value if node is a text node.

Errors

List of possible exceptions:

Error type Description
DomainError Invalid XmlNode in AccessXmlNode.

See Also