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

XmlElement::GetAttribute(String, String) method

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

virtual String System::Xml::XmlElement::GetAttribute(String localName, String namespaceURI)
ParameterType描述
localName字符串要检索的属性的本地名称。
namespaceURI字符串要检索的属性的命名空间 URI。

ReturnValue

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

另见

XmlElement::GetAttribute(String) method

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

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

ReturnValue

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

另见