MessageQueueEnumerator.MoveNext Method

Definition

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.

Applies to

See also