Adding a Node to the End of the Specified Node's Child Nodes with Add : XElement « XML LINQ « C# / C Sharp

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Design Patterns
8.Development Class
9.Event
10.File Stream
11.Generics
12.GUI Windows Form
13.Language Basics
14.LINQ
15.Network
16.Office
17.Reflection
18.Regular Expressions
19.Security
20.Services Event
21.Thread
22.Web Services
23.Windows
24.Windows Presentation Foundation
25.XML
26.XML LINQ
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source
C# / C Sharp » XML LINQ » XElementScreenshots 
Adding a Node to the End of the Specified Node's Child Nodes with Add
 
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() {
        XDocument xDocument = new XDocument(
          new XElement("Books",
            new XElement("Book",
              new XAttribute("type""Author"),
              new XElement("FirstName""J"),
              new XElement("LastName""R"))));

        xDocument.Element("Books").Add(
          new XElement("Book",
            new XAttribute("type""Author"),
            new XElement("FirstName""E"),
            new XElement("LastName""B")));

        Console.WriteLine(xDocument);
    }
}

 
Related examples in the same category
1.The Elements method returns just the child nodes of type XElement
2.Calling the ToString Method on an Element Produces the XML Tree
3.Immediate Execution of the XML Tree Construction
4.Casting an Element to Its Value's Data Type Outputs the Value
5.Different Node Value Types Retrieved via Casting to the Node Value's Type
6.Casting a Node to a Different Data Type Than Its Value's Original Data Type
7.Creating an Element Using the First Prototype
8.Use XElement.Parse to parse an element document
9.Is an element empty
10.Accessing the XML Document from an XElement Object via the Document Property
11.An Example with a Single Book
12.Obtaining Elements Without Reaching
13.Obtaining Restricted Elements Without Reaching
14.Obtaining Restricted Elements Without Reaching While Ordering and Using Query Expression Syntax
15.Suppressing Node Construction with null
16.Generates an Empty Element
17.Prevents an Empty Element
18.Handling Multiple Peer Nodes While Maintaining a Flat Structure
19.XElement.Load("Employee.xml")
20.Create XML document from object list
21.Creates the XML Tree
22.Saving an Element with the XElement.Save Method
23.Loading an Element with the XElement.Load Method
24.Parsing an XML String into an Element
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.