GetEnumerator Method

BerkeleyDB

Returns an enumerator that iterates through the JoinCursor.

Namespace:  BerkeleyDB
Assembly:  libdb_dotnet48 (in libdb_dotnet48.dll) Version: 4.8.24.0

Syntax

C#
public IEnumerator<KeyValuePair<DatabaseEntry, DatabaseEntry>> GetEnumerator()
Visual Basic (Declaration)
Public Function GetEnumerator As IEnumerator(Of KeyValuePair(Of DatabaseEntry, DatabaseEntry))
Visual C++
public:
virtual IEnumerator<KeyValuePair<DatabaseEntry^, DatabaseEntry^>>^ GetEnumerator() sealed

Return Value

An enumerator for the Cursor.

Implements

IEnumerable<(Of <(T>)>)..::.GetEnumerator()()()

Remarks

The enumerator will begin at the cursor's current position (or the first record if the cursor has not yet been positioned) and iterate forwards (i.e. in the direction of MoveNext()()()) over the remaining records.

See Also