XmlUtilsXmlAddNode Method (XmlNode, String, String) |
Adds a new XmlNode with the name nodeName and the value nodeValue to the node parentNode specified
Namespace:
SD.LLBLGen.Pro.Core.Xml
Assembly:
SD.LLBLGen.Pro.Core (in SD.LLBLGen.Pro.Core.dll) Version: 5.9.0.0 (5.9.0)
Syntax public static XmlNode XmlAddNode(
XmlNode parentNode,
string nodeName,
string nodeValue
)
Public Shared Function XmlAddNode (
parentNode As XmlNode,
nodeName As String,
nodeValue 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 - nodeValue
- Type: SystemString
value of node
Return Value
Type:
XmlNodeNew node created
See Also