MessageQueueEnumerator::MoveNext Method ()

 

Advances the enumerator to the next queue of the enumeration, if one is currently available.

Namespace:   System.Messaging
Assembly:  System.Messaging (in System.Messaging.dll)

public:
virtual bool MoveNext() sealed

Return Value

Type: System::Boolean

true if the enumerator was successfully advanced to the next queue; false if the enumerator has reached the end of the enumeration.

Exception Condition
SecurityException

The calling code does not have browse permissions.

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.

.NET Framework
Available since 1.1
Return to top
Show: