System::Xml::XmlElement::HasAttribute 方法

XmlElement::HasAttribute(String, String) method

确定当前节点是否具有具有指定本地名称和命名空间 URI 的属性。

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

ReturnValue

true if the current node has the specified attribute; otherwise, false.

另见

XmlElement::HasAttribute(String) method

确定当前节点是否具有具有指定名称的属性。

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

ReturnValue

true if the current node has the specified attribute; otherwise, false.

另见