Bamboo.Prevalence.XPath.Internal.ObjectNavigatorState.IsSamePosition C# (CSharp) Method

IsSamePosition() private method

private IsSamePosition ( ObjectNavigatorState other ) : bool
other ObjectNavigatorState
return bool
		internal virtual bool IsSamePosition(ObjectNavigatorState other)
		{
			return other._node == _node &&
				other._index == _index &&
				other._name == _name &&
				other._parent == _parent;
		}