IMongoDatabaseGetCollectionTDocument Method  | 
 
            Gets a collection.
            
 
    Namespace: 
   MongoDB.Driver
    Assembly:
   MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.19.1+3a2a09dd959482f665ffbb5df2557ec541597af4
SyntaxIMongoCollection<TDocument> GetCollection<TDocument>(
	string name,
	MongoCollectionSettings settings = null
)
Function GetCollection(Of TDocument) ( 
	name As String,
	Optional settings As MongoCollectionSettings = Nothing
) As IMongoCollection(Of TDocument)
abstract GetCollection : 
        name : string * 
        ?settings : MongoCollectionSettings 
(* Defaults:
        let _settings = defaultArg settings null
*)
-> IMongoCollection<'TDocument> 
Parameters
- name
 - Type: SystemString
The name of the collection. - settings (Optional)
 - Type: MongoDB.DriverMongoCollectionSettings
The settings. 
Type Parameters
- TDocument
 - The document type.
 
Return Value
Type: 
IMongoCollectionTDocumentAn implementation of a collection.
See Also