Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
12c (12.2.1.4.0)
E90869-02
Takes an IXmlDocument and iterate through all nodes to perform action on each node.

Namespace: Tangosol.Run.Xml
Assembly: Coherence (in Coherence.dll) Version: 12.2.1.4014 (12.2.1.4014)

Syntax

C#
public static void IterateThroughAllNodes(
	this IXmlDocument doc,
	Action<IXmlElement> elementVisitor
)

Parameters

doc
Type: Tangosol.Run.Xml..::..IXmlDocument
The IXmlDocument.
elementVisitor
Type: System..::..Action<(Of <(<'IXmlElement>)>)>
The action to perform.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IXmlDocument. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also