Accessing an Element's Attributes Using the Attributes Method : Attribute « XML LINQ « C# / C Sharp






Accessing an Element's Attributes Using the Attributes Method

  

using System;
using System.Linq;
using System.Collections;
using System.Collections.Generic;
using System.Xml;
using System.Xml.Linq;
public class MainClass {
    public static void Main() {

        XElement firstParticipant;
        XDocument xDocument = new XDocument(
         new XDeclaration("1.0", "UTF-8", "yes"),
         new XDocumentType("Books", null, "Books.dtd", null),
         new XProcessingInstruction("Book", "out-of-print"),
         new XElement("Books", firstParticipant =
           new XElement("Book",
           new XComment("This is a new author."),
           new XProcessingInstruction("AuthorHandler", "new"),
         new XAttribute("type", "Author"),
         new XElement("FirstName", "J"),
         new XElement("LastName", "R")),
       new XElement("Book",
         new XAttribute("type", "Author"),
         new XElement("FirstName", "E"),
         new XElement("LastName", "B"))));
        foreach (XAttribute attr in firstParticipant.Attributes()) {
            Console.WriteLine(attr);
        }
    }
}

   
  








Related examples in the same category

1.Get Attribute with namespace
2.Calling the Remove
3.Accessing an Element's First Attribute with the FirstAttribute Property
4.Accessing the Next Attribute with the NextAttribute Property
5.Accessing the Previous Attribute with the PreviousAttribute Property
6.Accessing the Last Attribute with the LastAttribute Property
7.Accessing an Attribute with the Attribute Method
8.Accessing All of an Element's Attributes with the Attributes Method
9.Removing an Attribute
10.Removing All of an Element's Attributes
11.Changing an Attribute's Value
12.Using SetAttributeValue to Add, Delete, and Update Attributes
13.Calling the First Attributes Prototype
14.Calling the Second Attributes Prototype
15.XElement.Attribute returns the XAttribute of this XElement that has the specified XName.
16.XElement.Attributes returns a collection of attributes of this element.
17.Returns a filtered collection of attributes of this element.
18.XElement.FirstAttribute gets the first attribute of this element.
19.XElement.HasAttributes gets a value indicating whether this element as at least one attribute.
20.XElement.LastAttribute gets the last attribute of this element.
21.XElement.RemoveAll removes nodes and attributes from this XElement.
22.XElement.RemoveAttributes removes the attributes of this XElement.
23.XElement.ReplaceAll replaces the child nodes and the attributes of this element
24.XElement.ReplaceAttributes replaces the attributes of this element with the specified content.
25.XElement.SetAttributeValue sets the value of an attribute, adds an attribute, or removes an attribute.