Note: This API is now obsolete.
Represents the output mode for an aggregate operation.
Namespace:
MongoDB.Driver
Assembly:
MongoDB.Driver.Legacy (in MongoDB.Driver.Legacy.dll) Version: 2.11.0+cb27a82ea70620ad1acad8058809be8302ae4f2a
Syntax[ObsoleteAttribute("Server versions 3.6 and newer always use a cursor.")]
public enum AggregateOutputMode
<ObsoleteAttribute("Server versions 3.6 and newer always use a cursor.")>
Public Enumeration AggregateOutputMode
[<ObsoleteAttribute("Server versions 3.6 and newer always use a cursor.")>]
type AggregateOutputMode
Members
| Member name | Value | Description |
---|
| Inline | 0 |
The output of the aggregate operation is returned inline.
|
| Cursor | 1 |
The output of the aggregate operation is returned using a cursor.
|
See Also