次の方法で共有


XmlNamedNodeMap.GetNamedItemNS(Object, String) メソッド

定義

指定した名前空間と名前を持つ 属性を取得します。

public:
 virtual IXmlNode ^ GetNamedItemNS(Platform::Object ^ namespaceUri, Platform::String ^ name) = GetNamedItemNS;
IXmlNode GetNamedItemNS(IInspectable const& namespaceUri, winrt::hstring const& name);
public IXmlNode GetNamedItemNS(object namespaceUri, string name);
function getNamedItemNS(namespaceUri, name)
Public Function GetNamedItemNS (namespaceUri As Object, name As String) As IXmlNode

パラメーター

namespaceUri
Object

Platform::Object

IInspectable

属性の名前空間名。

name
String

Platform::String

winrt::hstring

属性の名前。

戻り値

指定した名前空間と名前を持つ属性。 属性ノードがこのコレクションにない場合、このメソッドは Null を返します。

var node = attributes.GetNamedItemNS("http://schemas.microsoft.com/winfx/2006/xaml", "Name");
auto node = attributes.GetNamedItemNS(winrt::box_value(L"http://schemas.microsoft.com/winfx/2006/xaml"), L"Name");

適用対象