MindFusion.UI for WebForms Programmer's Guide

XmlPersistContext.SelectNodes Method

See Also
 





Returns the child nodes with the specified name.

Namespace: MindFusion.UI.Web
Assembly: MindFusion.UI.Web

 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

Type: XmlElement
The parent XML element.

name

Type: String
A string specifying the name of the child nodes.

 Return Value

Type: XmlNodeList
An XmlNodeList containing the found child nodes.

 See Also