NodeIsEqualNode 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.
Namespace: Aspose.Html.Dom
The Node to compare equality with.
A boolean value that is true if the two nodes are equals, or false if not. If otherNode is null, isEqualNode() always return false.