MessageQueueEnumerator.MoveNext Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Advances the enumerator to the next queue of the enumeration, if one is currently available.
public:
virtual bool MoveNext();
public bool MoveNext ();
abstract member MoveNext : unit -> bool
override this.MoveNext : unit -> bool
Public Function MoveNext () As Boolean
Returns
true
if the enumerator was successfully advanced to the next queue; false
if the enumerator has reached the end of the enumeration.
Implements
Exceptions
The calling code does not have browse permissions.
Remarks
MoveNext returns false
immediately if there are no queues associated with the enumeration.
MoveNext will return true
until it has reached the end of the collection. It will then return false
for each successive call. However once MoveNext has returned false
, accessing the Current property will throw an exception.
Upon creation, an enumerator is conceptually positioned before the first MessageQueue of the enumeration, and the first call to MoveNext brings the first queue of the enumeration into view.