XmlElement.GetAttributeNodeNS(Object, String) 方法

定义

从指定的命名空间返回指定的属性。

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

参数

namespaceUri
Object

Platform::Object

IInspectable

要获取的属性的命名空间。

localName
String

Platform::String

winrt::hstring

不带命名空间前缀的属性的名称。

返回

返回的属性指针。

示例

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");

适用于