| XmlHelperCreateNewNode Method  | 
 
            Adds a new XmlNode with the name nodeName to the document specified. Does not add the node to any
            parent node.
            
 
    Namespace: 
   SD.LLBLGen.Pro.ORMSupportClasses
    Assembly:
   SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.3.0.0 (5.3.0)
Syntaxpublic virtual XmlNode CreateNewNode(
	XmlDocument parentDocument,
	string nodeName
)
Public Overridable Function CreateNewNode ( 
	parentDocument As XmlDocument,
	nodeName As String
) As XmlNode
Parameters
- parentDocument
 - Type: System.XmlXmlDocument
document the new node will be added to - nodeName
 - Type: SystemString
name of node 
Return Value
Type: 
XmlNodeNew node created
See Also