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

XmlElement::GetAttributeNode(String, String) method

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

virtual SharedPtr<XmlAttribute> System::Xml::XmlElement::GetAttributeNode(String localName, String namespaceURI)
参数类型描述
localNameString属性的本地名称。
namespaceURIString属性的命名空间 URI。

ReturnValue

指定的 XmlAttribute,如果未找到匹配的属性则返回 nullptr

另见

XmlElement::GetAttributeNode(String) method

返回具有指定名称的 XmlAttribute

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

ReturnValue

指定的 XmlAttribute,如果未找到匹配的属性则返回 nullptr

另见