| MongoServerItem Property (String, WriteConcern) | 
 Note: This API is now obsolete.
            Gets a MongoDatabase instance representing a database on this server.
            
 
    Namespace: 
   MongoDB.Driver
    Assembly:
   MongoDB.Driver.Legacy (in MongoDB.Driver.Legacy.dll) Version: 2.5.0+57.Branch.master.Sha.6a4e00a2d91090c65a9b11364b9ebfdb9c7da076
 Syntax
Syntax[ObsoleteAttribute("Use GetDatabase instead.")]
public virtual MongoDatabase this[
	string databaseName,
	WriteConcern writeConcern
] { get; }<ObsoleteAttribute("Use GetDatabase instead.")>
Public Overridable ReadOnly Default Property Item ( 
	databaseName As String,
	writeConcern As WriteConcern
) As MongoDatabase
	Get[<ObsoleteAttribute("Use GetDatabase instead.")>]
abstract Item : MongoDatabase with get
[<ObsoleteAttribute("Use GetDatabase instead.")>]
override Item : MongoDatabase with getParameters
- databaseName
- Type: SystemString
 The name of the database.
- writeConcern
- Type: MongoDB.DriverWriteConcern
 The write concern to use with this database.
Return Value
Type: 
MongoDatabaseA new or existing instance of MongoDatabase.
 See Also
See Also