Node.IsEqualNode

Node.IsEqualNode method

The isEqualNode() method of the Node interface tests whether two nodes are equal. Two nodes are equal when they have the same type, defining characteristics (for elements, this would be their ID, number of children, and so forth), its attributes match, and so on. The specific set of data points that must match varies depending on the types of the nodes.

public bool IsEqualNode(Node otherNode)
ParameterTypeDescription
otherNodeNodeThe Node to compare equality with.

Return Value

A boolean value that is true if the two nodes are equals, or false if not. If otherNode is null, isEqualNode() always return false.

See Also