ReadPreference Constructor |
Namespace:
MongoDB.Driver
Assembly:
MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.5.0+57.Branch.master.Sha.6a4e00a2d91090c65a9b11364b9ebfdb9c7da076
Syntax public ReadPreference(
ReadPreferenceMode mode,
IEnumerable<TagSet> tagSets = null,
Nullable<TimeSpan> maxStaleness = null
)
Public Sub New (
mode As ReadPreferenceMode,
Optional tagSets As IEnumerable(Of TagSet) = Nothing,
Optional maxStaleness As Nullable(Of TimeSpan) = Nothing
)
new :
mode : ReadPreferenceMode *
?tagSets : IEnumerable<TagSet> *
?maxStaleness : Nullable<TimeSpan>
(* Defaults:
let _tagSets = defaultArg tagSets null
let _maxStaleness = defaultArg maxStaleness null
*)
-> ReadPreference
Parameters
- mode
- Type: MongoDB.DriverReadPreferenceMode
The read preference mode. - tagSets (Optional)
- Type: System.Collections.GenericIEnumerableTagSet
The tag sets. - maxStaleness (Optional)
- Type: SystemNullableTimeSpan
The maximum staleness.
See Also