BranchCollection.GetEnumerator Method

Definition

The GetEnumerator method obtains an IEnumerator interface that is used for iterating through the branch collection.

public:
 virtual System::Collections::IEnumerator ^ GetEnumerator();
public System.Collections.IEnumerator GetEnumerator ();
Public Function GetEnumerator () As IEnumerator

Returns

Implements

Remarks

The IEnumerator interface provides a method, IEnumerator.MoveNext(), which allows the caller to increment forward through the collection. To return to the start of the collection, call IEnumerator.Reset(). The current branch element can be obtained with the IEnumerator.Current property, which returns the element as an object that must be recast as a ClientTransaction type.

Applies to