Table of Contents

Method GetEnumerator

Namespace
MongoDB.Driver
Assembly
MongoDB.Driver.Legacy.dll

GetEnumerator()

Returns an enumerator that can be used to enumerate the cursor. Normally you will use the foreach statement to enumerate the cursor (foreach will call GetEnumerator for you).

public virtual IEnumerator<TDocument> GetEnumerator()

Returns

IEnumerator<TDocument>

An enumerator that can be used to iterate over the cursor.