Node.IsSameNode
Node.IsSameNode method
The isSameNode() method of the Node interface is a legacy alias the for the === strict equality operator. That is, it tests whether two nodes are the same (in other words, whether they reference the same object).
Note: There is no need to use isSameNode(); instead use the === strict equality operator.
public bool IsSameNode(Node otherNode)
Parameter | Type | Description |
---|---|---|
otherNode | Node | The Node to test against. |
Return Value
A boolean value that is true if both nodes are stricly equal, false if not.
See Also
- class Node
- namespace Aspose.Html.Dom
- assembly Aspose.HTML