Compartilhar via


XmlDocument.CreateAttributeNS(Object, String) Método

Definição

Cria um novo atributo com o namespace e o nome especificados.

public:
 virtual XmlAttribute ^ CreateAttributeNS(Platform::Object ^ namespaceUri, Platform::String ^ qualifiedName) = CreateAttributeNS;
XmlAttribute CreateAttributeNS(IInspectable const& namespaceUri, winrt::hstring const& qualifiedName);
public XmlAttribute CreateAttributeNS(object namespaceUri, string qualifiedName);
function createAttributeNS(namespaceUri, qualifiedName)
Public Function CreateAttributeNS (namespaceUri As Object, qualifiedName As String) As XmlAttribute

Parâmetros

namespaceUri
Object

Platform::Object

IInspectable

O nome do namespace desejado ou um valor nulo se nenhum namespace for desejado.

qualifiedName
String

Platform::String

winrt::hstring

O nome do novo objeto de atributo. Esse nome está disponível posteriormente como a propriedade NodeName do novo nó.

Retornos

O atributo recém-criado.

Exemplos

var attribute = document.CreateAttributeNS("http://www.w3.org/2000/svg", "width");
auto attribute = document.CreateAttributeNS(winrt::box_value(L"http://www.w3.org/2000/svg"), L"width");

Aplica-se a