Search
XmlSerializationContext.SelectSingleNode Method (XmlNode, String)
See Also
 





Selects a node with the specified name.

Namespace: MindFusion.Scheduling
Assembly: MindFusion.Scheduling.Wpf

 Syntax

C#  Copy Code

public static XmlElement SelectSingleNode (
    XmlNode parent,
    string name
)

Visual Basic  Copy Code

Public Shared Function SelectSingleNode( _
    parent As XmlNode, _
    name As String _
) As XmlElement

 Parameters

parent
The parent element whose child is to be selected.
name
A string specifying the name of the node of interest.

 Return Value

A .NET XmlElement representing the found node or null (Nothing in Visual Basic) if no node with the specified name has been found.

 See Also