[This is preliminary documentation and is subject to change.]

Determines whether the specified Object is equal to the current XPathObjectNavigator..::..Step.

Namespace: Tools.XmlT.XPathT
Assembly: Tools (in Tools.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
public override bool Equals(
	Object obj
)
Visual Basic
Public Overrides Function Equals ( _
	obj As Object _
) As Boolean
Visual C++
public:
virtual bool Equals(
	Object^ obj
) override
F#
abstract Equals : 
        obj:Object -> bool 
override Equals : 
        obj:Object -> bool 
JScript
public override function Equals(
	obj : Object
) : boolean

Parameters

obj
Type: System..::..Object
The Object to compare with the current XPathObjectNavigator..::..Step.

Return Value

true if the specified Object is equal to the current XPathObjectNavigator..::..Step; otherwise, false. This function always returns false when type of obj is not XPathObjectNavigator..::..Step and is not same as type of current instance.

Remarks

This function cannot be overriden. Override overloaded function instead.

See Also