System::Xml::XmlElement::GetAttribute 方法

XmlElement::GetAttribute(String, String) method

返回具有指定本地名称和命名空间 URI 的属性的值。

virtual String System::Xml::XmlElement::GetAttribute(String localName, String namespaceURI)
参数类型描述
localNameString要检索的属性的本地名称。
namespaceURIString要检索的属性的命名空间 URI。

ReturnValue

指定属性的值。如果未找到匹配的属性,或属性没有指定的或默认的值,则返回空字符串。

另见

XmlElement::GetAttribute(String) method

返回具有指定名称的属性的值。

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

ReturnValue

指定属性的值。如果未找到匹配的属性,或属性没有指定的或默认的值,则返回空字符串。

另见