XmlUtilsXmlAddNode Method (XmlNode, String) | 
 
            Adds a new XmlNode with the name nodeName to the node parentNode specified
            
 
    Namespace: 
   SD.LLBLGen.Pro.Core.Xml
    Assembly:
   SD.LLBLGen.Pro.Core (in SD.LLBLGen.Pro.Core.dll) Version: 5.11.0.0 (5.11.23.1114)
Syntaxpublic static XmlNode XmlAddNode(
	XmlNode parentNode,
	string nodeName
)
Public Shared Function XmlAddNode ( 
	parentNode As XmlNode,
	nodeName As String
) As XmlNode
Parameters
- parentNode
 - Type: System.XmlXmlNode
the parent node the node will be added to as a childnode - nodeName
 - Type: SystemString
name of node 
Return Value
Type: 
XmlNodeNew node created
See Also