Search
XmlPersistContext.SelectNode Method
See Also
 






Returns the child node with the specified name.

Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming

 Syntax

C#  Copy Code

public XElement SelectNode (
    XElement parentElement,
    string name
)

Visual Basic  Copy Code

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

 Parameters

parentElement

The parent XML element.

name

A string specifying the name of the child node.

 Return Value

An XElement corresponding to the child node.

 See Also