XmlDataDocument.CreateElement(String, String, String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Creates an element with the specified Prefix, LocalName , and NamespaceURI.
public:
override System::Xml::XmlElement ^ CreateElement(System::String ^ prefix, System::String ^ localName, System::String ^ namespaceURI);
public override System.Xml.XmlElement CreateElement(string? prefix, string localName, string? namespaceURI);
public override System.Xml.XmlElement CreateElement(string prefix, string localName, string namespaceURI);
override this.CreateElement : string * string * string -> System.Xml.XmlElement
Public Overrides Function CreateElement (prefix As String, localName As String, namespaceURI As String) As XmlElement
Parameters
- prefix
- String
The prefix of the new element. If String.Empty or null
, there is no prefix.
- localName
- String
The local name of the new element.
- namespaceURI
- String
The namespace Uniform Resource Identifier (URI) of the new element. If String.Empty or null
, there is no namespaceURI.
Returns
A new XmlElement.