| GetAttribute(string) : stringRetrieves an attribute value by name. |
| GetAttributeNode(string) : IAttrRetrieves an attribute node by name. |
| GetAttributeNodeNS(string, string) : IAttrRetrieves an Attr node by local name and namespace URI. |
| GetAttributeNS(string, string) : stringRetrieves an attribute value by local name and namespace URI. |
| GetElementsByTagName(string) : INodeListReturns a NodeList of all descendant Elements
with a given tag name, in document order. |
| GetElementsByTagNameNS(string, string) : INodeListReturns a NodeList of all the descendant
Elements with a given local name and namespace URI in
document order. |
| HasAttribute(string) : boolReturns true when an attribute with a given name is
specified on this element or has a default value, false
otherwise. |
| HasAttributeNS(string, string) : boolReturns true when an attribute with a given local name and
namespace URI is specified on this element or has a default value,
false otherwise. |
| RemoveAttribute(string)Removes an attribute by name. |
| RemoveAttributeNode(IAttr) : IAttrRemoves the specified attribute node. |
| RemoveAttributeNS(string, string)Removes an attribute by local name and namespace URI. |
| SetAttribute(string, string)Adds a new attribute. |
| SetAttributeNode(IAttr) : IAttrAdds a new attribute node. |
| SetAttributeNodeNS(IAttr) : IAttrAdds a new attribute. |
| SetAttributeNS(string, string, string)Adds a new attribute. |
| SetIdAttribute(string, bool)If the parameter isId is true, this method
declares the specified attribute to be a user-determined ID attribute
. |
| SetIdAttributeNode(IAttr, bool)If the parameter isId is true, this method
declares the specified attribute to be a user-determined ID attribute
. |
| SetIdAttributeNS(string, string, bool)If the parameter isId is true, this method
declares the specified attribute to be a user-determined ID attribute
. |