Class IXmlDocumentExtension
An extension to the IXmlDocument to iterate through all nodes and perform task.
Inherited Members
Namespace: Tangosol.Run.Xml
Assembly: Coherence.dll
Syntax
public static class IXmlDocumentExtension
Methods
IterateThroughAllNodes(IXmlDocument, Action<IXmlElement>)
Takes an IXmlDocument and iterate through all nodes to perform action on each node.
Declaration
public static void IterateThroughAllNodes(this IXmlDocument doc, Action<IXmlElement> elementVisitor)
Parameters
Type | Name | Description |
---|---|---|
IXmlDocument | doc | The IXmlDocument. |
Action<IXmlElement> | elementVisitor | The action to perform. |