XNode.DeepEquals Method
Compares the values of two nodes, including the values of all descendant nodes.
Namespace: System.Xml.Linq
Assembly: System.Xml.Linq (in System.Xml.Linq.dll)
Parameters
- n1
- Type: System.Xml.Linq.XNode
The first XNode to compare.
- n2
- Type: System.Xml.Linq.XNode
The second XNode to compare.
The following criteria determine whether two nodes are equal:
A null node is equal to another null node but unequal to a non-null node.
Two XNode objects of different types are never equal.
Two XText nodes are equal if they contain the same text.
Two XElement nodes are equal if they have the same tag name, the same set of attributes with the same values, and (ignoring comments and processing instructions) contain two equal length sequences of equal content nodes.
Two XDocument nodes are equal if their root nodes are equal.
Two XComment nodes are equal if they contain the same comment text.
Two XProcessingInstruction nodes are equal if they have the same target and data.
Two XDocumentType nodes are equal if the have the same name, public ID, system ID, and internal subset.
The following example uses this method to compare two XML trees.
XElement xmlTree1 = new XElement("Root", new XAttribute("Att1", 1), new XAttribute("Att2", 2), new XElement("Child1", 1), new XElement("Child2", "some content") ); XElement xmlTree2 = new XElement("Root", new XAttribute("Att1", 1), new XAttribute("Att2", 2), new XElement("Child1", 1), new XElement("Child2", "some content") ); Console.WriteLine(XNode.DeepEquals(xmlTree1, xmlTree2));
This example produces the following output:
True
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.