System::Xml::XPath::XPathNavigator::MoveToNext 메서드

XPathNavigator::MoveToNext() method

파생 클래스에서 재정의될 경우, 현재 노드의 다음 형제 노드로 XPathNavigator를 이동시킵니다.

virtual bool System::Xml::XPath::XPathNavigator::MoveToNext()=0

ReturnValue

true if the XPathNavigator is successful moving to the next sibling node; otherwise false if there are no more siblings or if the XPathNavigator is currently positioned on an attribute node. If false, the position of the XPathNavigator is unchanged.

또 보기

XPathNavigator::MoveToNext(String, String) method

XPathNavigator를 지정된 로컬 이름 및 네임스페이스 URI를 가진 다음 형제 노드로 이동시킵니다.

virtual bool System::Xml::XPath::XPathNavigator::MoveToNext(String localName, String namespaceURI)
매개변수형식설명
localNameString이동할 다음 형제 노드의 로컬 이름.
namespaceURIString이동할 다음 형제 노드의 네임스페이스 URI.

ReturnValue

true if the XPathNavigator is successful moving to the next sibling node; false if there are no more siblings, or if the XPathNavigator is currently positioned on an attribute node. If false, the position of the XPathNavigator is unchanged.

또 보기

XPathNavigator::MoveToNext(XPathNodeType) method

XPathNavigator를 현재 노드의 다음 형제 노드 중 지정된 XPathNodeType와 일치하는 노드로 이동시킵니다.

virtual bool System::Xml::XPath::XPathNavigator::MoveToNext(XPathNodeType type)
매개변수형식설명
typeXPathNodeType이동할 형제 노드의 XPathNodeType.

ReturnValue

true if the XPathNavigator is successful moving to the next sibling node; otherwise, false if there are no more siblings or if the XPathNavigator is currently positioned on an attribute node. If false, the position of the XPathNavigator is unchanged.

또 보기