XNode.AddBeforeSelf Method (Object)
Adds the specified content immediately before this node.
Assembly: System.Xml.Linq (in System.Xml.Linq.dll)
| Exception | Condition |
|---|---|
| InvalidOperationException |
The parent is null. |
For details about the valid content that can be passed to this method, see Valid Content of XElement and XDocument Objects.
This method will raise the Changed and the Changing events.
The XContainer stores its child nodes as a singly-linked list of XNode objects. This means that the AddBeforeSelf method must traverse the list of direct child nodes under the parent container. Therefore, using this method might affect your performance.
The following example uses this method to add an element into the tree.
XElement xmlTree = new XElement("Root", new XElement("Child1", 1), new XElement("Child2", 2), new XElement("Child3", 3), new XElement("Child4", 4), new XElement("Child5", 5) ); XElement child1 = xmlTree.Element("Child1"); child1.AddBeforeSelf( new XElement("NewChild", 10) ); Console.WriteLine(xmlTree);
This example produces the following output:
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.