XmlNamedNodeMap.RemoveNamedItemNS(Object, String) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
删除由命名空间和本地名称指定的项。
public:
virtual IXmlNode ^ RemoveNamedItemNS(Platform::Object ^ namespaceUri, Platform::String ^ name) = RemoveNamedItemNS;
IXmlNode RemoveNamedItemNS(IInspectable const& namespaceUri, winrt::hstring const& name);
public IXmlNode RemoveNamedItemNS(object namespaceUri, string name);
function removeNamedItemNS(namespaceUri, name)
Public Function RemoveNamedItemNS (namespaceUri As Object, name As String) As IXmlNode
参数
- namespaceUri
-
Object
Platform::Object
IInspectable
特性的命名空间名称。
- name
-
String
Platform::String
winrt::hstring
属性名。
返回
从集合中删除的节点。 如果命名节点不是属性,则此方法返回 Null。
示例
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");