XmlDataDocument.CreateElement(String, String, String) Método

Definição

Cria um elemento com o especificado Prefix, LocalName e 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

Parâmetros

prefix
String

O prefixo do novo elemento. Se String.Empty ou null, não há nenhum prefixo.

localName
String

O nome local do novo elemento.

namespaceURI
String

O URI (Uniform Resource Identifier) do namespace do novo elemento. Se String.Empty ou null, não houver namespaceURI.

Retornos

Um novo XmlElement.

Aplica-se a