Advances the enumerator to the next element of the collection.

Namespace: Com.Tibco.As.Space.Browser
Assembly: TIBCO.ActiveSpaces.Common (in TIBCO.ActiveSpaces.Common.dll) Version: 2.0.0.0 (2.4.0.001)

Syntax

C#
public abstract bool MoveNext()
Visual Basic
Public MustOverride Function MoveNext As Boolean
Visual C++
public:
virtual bool MoveNext() abstract
F#
abstract MoveNext : unit -> bool 

Return Value

Type: Boolean
true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the collection.

Implements

IEnumerator..::..MoveNext()()()()

Exceptions

ExceptionCondition
System..::..InvalidOperationException The collection was modified after the enumerator was created.

See Also