XmlElement.GetAttributeNodeNS(Object, String) Methode
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Gibt das angegebene Attribut aus dem angegebenen Namespace zurück.
public:
virtual XmlAttribute ^ GetAttributeNodeNS(Platform::Object ^ namespaceUri, Platform::String ^ localName) = GetAttributeNodeNS;
XmlAttribute GetAttributeNodeNS(IInspectable const& namespaceUri, winrt::hstring const& localName);
public XmlAttribute GetAttributeNodeNS(object namespaceUri, string localName);
function getAttributeNodeNS(namespaceUri, localName)
Public Function GetAttributeNodeNS (namespaceUri As Object, localName As String) As XmlAttribute
Parameter
- namespaceUri
-
Object
Platform::Object
IInspectable
Der Namespace des abzurufenden Attributs.
- localName
-
String
Platform::String
winrt::hstring
Der Name des Attributs ohne das Namespacepräfix.
Gibt zurück
Der zurückgegebene Attributzeiger.
Beispiele
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");