MindFusion.UI for WebForms Programmer's Guide

XmlPersistContext.SelectNode Method

See Also
 





Returns the child node with the specified name.

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

 Syntax

C#  Copy Code

public XmlElement SelectNode (
    XmlElement parentElement,
    string name
)

Visual Basic  Copy Code

Public Function SelectNode( _
    parentElement As XmlElement, _
    name As String _
) As XmlElement

 Parameters

parentElement

Type: XmlElement
The parent XML element.

name

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

 Return Value

Type: XmlElement
An XmlElement corresponding to the child node.

 See Also