Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 847 Bytes

xmlelement_getattributenodens_1921409124.md

File metadata and controls

37 lines (26 loc) · 847 Bytes
-api-id -api-type
M:Windows.Data.Xml.Dom.XmlElement.GetAttributeNodeNS(System.Object,System.String)
winrt method

Windows.Data.Xml.Dom.XmlElement.GetAttributeNodeNS

-description

Returns the specified attribute from the specified namespace.

-parameters

-param namespaceUri

The namespace of the attribute to get.

-param localName

The name of the attribute without the namespace prefix.

-returns

The returned attribute pointer.

-remarks

-examples

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");

-see-also