XmlDocument.QueryProxy

This an XPath query handle used to perform queries on a set of elements.

Members

Functions

attribute
QueryProxy attribute(bool delegate(Node) filter)

Returns a set containing all attribute nodes of the nodes within this set which pass the given filtering test.

attribute
QueryProxy attribute(string name)

Return a set containing all attributes of the nodes within this set, which match the given name.

nodes
Node[] nodes()

Returns an array of all the nodes stored in the receiver.

opApply
int opApply(int delegate(ref Node) dg)

Iterates over the set of nodes.

opIndex
QueryProxy opIndex(string name)

Returns a set containing all child elements of the nodes within this set, which match the given name.

Meta