INode.IsSameNode(INode) Method

Definition

Returns whether this node is the same node as the given one.

[Android.Runtime.Register("isSameNode", "(Lorg/w3c/dom/Node;)Z", "GetIsSameNode_Lorg_w3c_dom_Node_Handler:Org.W3c.Dom.INodeInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public bool IsSameNode (Org.W3c.Dom.INode? other);
[<Android.Runtime.Register("isSameNode", "(Lorg/w3c/dom/Node;)Z", "GetIsSameNode_Lorg_w3c_dom_Node_Handler:Org.W3c.Dom.INodeInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member IsSameNode : Org.W3c.Dom.INode -> bool

Parameters

other
INode

The node to test against.

Returns

Returns true if the nodes are the same, false otherwise.

Attributes

Remarks

Returns whether this node is the same node as the given one. <br>This method provides a way to determine whether two Node references returned by the implementation reference the same object. When two Node references are references to the same object, even if through a proxy, the references may be used completely interchangeably, such that all attributes have the same values and calling the same DOM method on either reference always has exactly the same effect.

Added in DOM Level 3.

Java documentation for org.w3c.dom.Node.isSameNode(org.w3c.dom.Node).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to