XmlElement.GetAttributeNS(Object, String) 方法

定义

返回 特性的值。

public:
 virtual Platform::String ^ GetAttributeNS(Platform::Object ^ namespaceUri, Platform::String ^ localName) = GetAttributeNS;
winrt::hstring GetAttributeNS(IInspectable const& namespaceUri, winrt::hstring const& localName);
public string GetAttributeNS(object namespaceUri, string localName);
function getAttributeNS(namespaceUri, localName)
Public Function GetAttributeNS (namespaceUri As Object, localName As String) As String

参数

namespaceUri
Object

Platform::Object

IInspectable

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

localName
String

Platform::String

winrt::hstring

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

返回

String

Platform::String

winrt::hstring

特性的字符串值。

示例

var width = element.GetAttributeNS("http://www.w3.org/2000/svg", "width");
auto width = element.GetAttributeNS(winrt::box_value(L"http://www.w3.org/2000/svg"), L"width");

适用于