Bamboo.Prevalence.XPath.XPathObjectNavigator.MoveTo C# (CSharp) Метод

MoveTo() публичный Метод

See System.Xml.XPath.XPathNavigator.MoveTo for details.
public MoveTo ( System other ) : bool
other System
Результат bool
		public override bool MoveTo(System.Xml.XPath.XPathNavigator other)
		{
			Trace("MoveTo");
			XPathObjectNavigator navigator = other as XPathObjectNavigator;
			if (null == other)
			{
				return false;
			}
			_state = navigator._state;
			_root = navigator._root;
			_context = navigator._context;
			return true;
		}