XElement.ReplaceAttributes Method (Object[])
Replaces the attributes of this element with the specified content.
Assembly: System.Xml.Linq (in System.Xml.Linq.dll)
This method first removes existing attributes. It then adds the specified content.
For details about the valid content that can be passed to this function, see Valid Content of XElement and XDocument Objects.
The following example creates an element with three attributes. It then replaces the attributes with other attributes.
XElement root = new XElement("Root", new XAttribute("Att1", 1), new XAttribute("Att2", 2), new XAttribute("Att3", 3) ); root.ReplaceAttributes( new XAttribute("NewAtt1", 101), new XAttribute("NewAtt2", 102), new XAttribute("NewAtt3", 103) ); Console.WriteLine(root);
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.