Search
XmlPersistContext.SelectNodes Method
See Also
 






Returns the child nodes with the specified name.

Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming

 Syntax

C#  Copy Code

public IEnumerable<XElement> SelectNodes (
    XElement parentElement,
    string name
)

Visual Basic  Copy Code

Public Function SelectNodes( _
    parentElement As XElement, _
    name As String _
) As IEnumerable(Of XElement)

 Parameters

parentElement

The parent XML element.

name

A string specifying the name of the child nodes.

 Return Value

An enumerable containing the found child nodes.

 See Also