XmlNamedNodeMap.RemoveNamedItemNS(Object, String) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Supprime un élément spécifié par un espace de noms et un nom local.
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
Paramètres
- namespaceUri
-
Object
Platform::Object
IInspectable
Nom de l’espace de noms de l’attribut.
- name
-
String
Platform::String
winrt::hstring
Nom de l'attribut.
Retours
Le nœud supprimé de la collection. Cette méthode retourne null si le nœud nommé n’est pas un attribut.
Exemples
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");