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.6.0+Branch.origin/v2.6.x.Sha.593796a7b35dc59243383bcc684de296a5468f2e
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