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.8.0+cc573f3e1f48f39162b4b680e921a623e127e8fa
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