Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 932 Bytes

xmlnamednodemap_removenameditemns_1921591319.md

File metadata and controls

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

Windows.Data.Xml.Dom.XmlNamedNodeMap.RemoveNamedItemNS

-description

Removes an item that is specified by a namespace and local name.

-parameters

-param namespaceUri

The namespace name of the attribute.

-param name

The name of the attribute.

-returns

The node removed from the collection. This method returns Null if the named node is not an attribute.

-remarks

-examples

var removedNode = attributes.RemoveNamedItemNS("http://schemas.microsoft.com/winfx/2006/xaml", "Name");
auto removedNode = attributes.RemoveNamedItemNS(winrt::box_value(L"http://schemas.microsoft.com/winfx/2006/xaml"), L"Name");

-see-also