Click or drag to resize

IXmlDocumentExtensionIterateThroughAllNodes Method

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-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: 14.1.1.14 (14.1.1.14)
Syntax
C#
public static void IterateThroughAllNodes(
	this IXmlDocument doc,
	Action<IXmlElement> elementVisitor
)

Parameters

doc
Type: Tangosol.Run.XmlIXmlDocument
The IXmlDocument.
elementVisitor
Type: SystemActionIXmlElement
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