Creates an System.Xml.XmlNode instance.
- nodeTypeString
- Node type name that indicates the type of node to be created.
- name
- Name string of the node to be created.
- namespaceURI
- Namespace URI string of the node to be created.
An System.Xml.XmlNode instance as indicated by the parameters.
Creates an System.Xml.XmlNode instance. It internally invokes XmlDocument.CreateNode(XmlNodeType, string, string) method, with interpreted System.Xml.XmlNodeType from nodeTypeString parameter, as listed below:
String Corresponding node type attribute XmlNodeType.Attribute cdatasection XmlNodeType.CDATA comment XmlNodeType.Comment document XmlNodeType.Document documentfragment XmlNodeType.DocumentFragment documenttype XmlNodeType.DocumentType element XmlNodeType.Element entityreference XmlNodeType.EntityReference processinginstruction XmlNodeType.ProcessingInstruction significantwhitespace XmlNodeType.SignificantWhitespace text XmlNodeType.Text whitespace XmlNodeType.Whitespace
Namespace: System.Xml
Assembly: System.Xml (in System.Xml.dll)
Assembly Versions: 1.0.5000.0, 2.0.0.0