Click or drag to resize

ReadPreferenceMode Enumeration

Represents the read preference mode.

Namespace:  MongoDB.Driver
Assembly:  MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.12.2+a4a3888f4fb51bb518b1eb5002effc2d47f2ea6a
Syntax
public enum ReadPreferenceMode
Members
  Member nameValueDescription
Primary0 Reads should be from the primary.
PrimaryPreferred1 Reads should be from the primary if possible, otherwise from a secondary.
Secondary2 Reads should be from a secondary.
SecondaryPreferred3 Reads should be from a secondary if possible, otherwise from the primary.
Nearest4 Reads should be from any server that is within the latency threshold window.
See Also