共用方式為


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

適用於