1. | Create an XElement class with the specified name. | | |
2. | Create an XElement class with the specified name and content. | | |
3. | Create an XElement class from an XStreamingElement object. | | |
4. | The Elements method returns just the child nodes of type XElement | | |
5. | Calling the ToString Method on an Element Produces the XML Tree | | |
6. | Immediate Execution of the XML Tree Construction | | |
7. | Casting an Element to Its Value's Data Type Outputs the Value | | |
8. | Different Node Value Types Retrieved via Casting to the Node Value's Type | | |
9. | Casting a Node to a Different Data Type Than Its Value's Original Data Type | | |
|
10. | Creating an Element Using the First Prototype | | |
11. | Use XElement.Parse to parse an element document | | |
12. | Is an element empty | | |
13. | Accessing the XML Document from an XElement Object via the Document Property | | |
14. | An Example with a Single Book | | |
15. | Adding a Node to the End of the Specified Node's Child Nodes with Add | | |
16. | Obtaining Elements Without Reaching | | |
17. | Obtaining Restricted Elements Without Reaching | | |
18. | Obtaining Restricted Elements Without Reaching While Ordering and Using Query Expression Syntax | | |
19. | Suppressing Node Construction with null | | |
20. | Generates an Empty Element | | |
21. | Prevents an Empty Element | | |
22. | Handling Multiple Peer Nodes While Maintaining a Flat Structure | | |
23. | XElement.Load("Employee.xml") | | |
24. | Create XML document from object list | | |
25. | Creates the XML Tree | | |
26. | Saving an Element with the XElement.Save Method | | |
27. | Loading an Element with the XElement.Load Method | | |
28. | Parsing an XML String into an Element | | |
29. | XElement Class Represents an XML element. | | |
30. | Use Linq to create XElement | | |
31. | Create a new XElement class from another XElement object. | | |
32. | XElement.HasElements gets a value indicating whether this element has at least one child element. | | |
33. | XElement.IsEmpty gets a value indicating whether this element contains no content. | | |
34. | Count the node with whitespace | | |
35. | Get line number and line position | | |
36. | XElement.Name gets or sets the name of this element. | | |
37. | XElement.NodeType gets the node type for this node. | | |
38. | XElement.SetElementValue sets the value of a child element, adds a child element, or removes a child element. | | |
39. | XElement.SetValue sets the value of this element. | | |
40. | XElement.Value gets or sets the concatenated text contents of this element. | | |
41. | XElement.WriteTo writes this element to an XmlWriter. | | |
42. | XElement to Boolean Cast | | |
43. | XElement to DateTime Cast | | |
44. | Rename element | | |