NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

XmlNodeEnumerator.MoveNext

Advances this enumerator to the next element.

[Visual Basic]
Public Function MoveNext() As Boolean
[C#]
public bool MoveNext();
[C++]
public: bool MoveNext();
[JScript]
public function MoveNext() : Boolean;

Return Value

true if the enumerator was advanced to the next element, false if no more elements are available.

Remarks

Upon instantiation, an enumerator is positioned "before" the first element in the sequence, and MoveNext must be called to bring the first element into view.

See Also

XmlNodeEnumerator Structure | XmlNodeEnumerator Members | System.Xml Namespace | Current