System::Xml::XmlElement::GetAttributeNode 方法

XmlElement::GetAttributeNode(String, String) method

返回具有指定本地名称和命名空间 URI 的 XmlAttribute

virtual SharedPtr<XmlAttribute> System::Xml::XmlElement::GetAttributeNode(String localName, String namespaceURI)
ParameterType描述
localName字符串属性的本地名称。
namespaceURI字符串属性的命名空间 URI。

ReturnValue

指定的 XmlAttributenullptr(如果未找到匹配的属性)。

另见

XmlElement::GetAttributeNode(String) method

返回具有指定名称的 XmlAttribute

virtual SharedPtr<XmlAttribute> System::Xml::XmlElement::GetAttributeNode(String name)
ParameterType描述
name字符串要检索的属性的名称。这是一个限定名称。它会与匹配节点的 get_Name 值进行匹配。

ReturnValue

指定的 XmlAttributenullptr(如果未找到匹配的属性)。

另见