Compartilhar via


XmlElement.GetAttributeNodeNS(Object, String) Método

Definição

Retorna o atributo especificado do namespace especificado.

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

Parâmetros

namespaceUri
Object

Platform::Object

IInspectable

O namespace do atributo a ser obtido.

localName
String

Platform::String

winrt::hstring

O nome do atributo sem o prefixo de namespace.

Retornos

O ponteiro de atributo retornado.

Exemplos

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

Aplica-se a