다음을 통해 공유


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

적용 대상