XmlNamedNodeMap.GetNamedItemNS(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.
Récupère l’attribut avec l’espace de noms et le nom spécifiés.
public:
virtual IXmlNode ^ GetNamedItemNS(Platform::Object ^ namespaceUri, Platform::String ^ name) = GetNamedItemNS;
IXmlNode GetNamedItemNS(IInspectable const& namespaceUri, winrt::hstring const& name);
public IXmlNode GetNamedItemNS(object namespaceUri, string name);
function getNamedItemNS(namespaceUri, name)
Public Function GetNamedItemNS (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
Attribut avec l’espace de noms et le nom spécifiés. Cette méthode retourne null si le nœud d’attribut ne se trouve pas dans cette collection.
Exemples
var node = attributes.GetNamedItemNS("http://schemas.microsoft.com/winfx/2006/xaml", "Name");
auto node = attributes.GetNamedItemNS(winrt::box_value(L"http://schemas.microsoft.com/winfx/2006/xaml"), L"Name");