共用方式為


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

適用於