Search
XmlPersistContext.SelectNodes Method
See Also
 





Returns the child nodes with the specified name.

Namespace: MindFusion.Diagramming
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

public XmlNodeList SelectNodes (
    XmlElement parentElement,
    string name
)

Visual Basic  Copy Code

Public Function SelectNodes( _
    parentElement As XmlElement, _
    name As String _
) As XmlNodeList

 Parameters

parentElement

The parent XML element.

name

A string specifying the name of the child nodes.

 Return Value

An XmlNodeList containing the found child nodes.

 See Also