Removes an attribute by name. : XmlElement « XML « C# / C Sharp






Removes an attribute by name.

   

using System;
using System.IO;
using System.Xml;

public class Sample
{
  public static void Main()
  {

    XmlDocument doc = new XmlDocument();
    doc.LoadXml("<book genre='Computer' ISBN='1-111111-11-1'>" +
                "<title>C#</title>" +
                "</book>");

    XmlElement root = doc.DocumentElement;

    root.RemoveAttribute("genre");
    Console.WriteLine(doc.InnerXml);
  }
}

   
    
    
  








Related examples in the same category

1.Gets an XmlAttributeCollection containing the list of attributes
2.Creates a duplicate of this node.
3.Returns the value for the attribute with the specified name.
4.Returns the XmlAttribute with the specified name.
5.Returns an XmlNodeList containing a list of all descendant elements that match the Name.
6.Gets a boolean value indicating whether the current node has any attributes.
7.Gets or sets the concatenated values of the node and all its children.Gets or sets the concatenated values of the node and all its children.
8.Gets or sets the tag format of the element.
9.Gets the local name of the current node.
10.Gets the qualified name of the node.
11.Gets the XmlDocument to which this node belongs.
12.Removes all specified attributes and children of the current node. Default attributes are not removed.
13.Removes all specified attributes from the element.
14.Removes an attribute with the specified local name and namespace URI.
15.Removes the attribute node with the specified index from the element.
16.Removes the XmlAttribute specified by the local name and namespace URI.
17.Adds the specified XmlAttribute.
18.Saves all the children of the node to the specified XmlWriter.
19.Saves the current node to the specified XmlWriter.
20.Load Xml String
21.Creates the element.
22.Get first child and its Node List
23.Append element
24.Appends a new empty element to the given target element.
25.Appends a new element containing a text value to the given target element.