| IMongoCollectionTDocumentWithReadPreference Method  | 
 
            Returns a new IMongoCollection instance with a different read preference setting.
            
 
    Namespace: 
   MongoDB.Driver
    Assembly:
   MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.11.0+cb27a82ea70620ad1acad8058809be8302ae4f2a
 Syntax
SyntaxIMongoCollection<TDocument> WithReadPreference(
	ReadPreference readPreference
)
Function WithReadPreference ( 
	readPreference As ReadPreference
) As IMongoCollection(Of TDocument)
abstract WithReadPreference : 
        readPreference : ReadPreference -> IMongoCollection<'TDocument> 
Parameters
- readPreference
- Type: MongoDB.DriverReadPreference
 The read preference.
Return Value
Type: 
IMongoCollectionTDocumentA new IMongoCollection instance with a different read preference setting.
 See Also
See Also