다음을 통해 공유


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

적용 대상