Click or drag to resize

MongoCredentialCreateMongoCRCredential Method (String, String, String)

Note: This API is now obsolete.

Creates a credential used with MONGODB-CR.

Namespace:  MongoDB.Driver
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.8.0+cc573f3e1f48f39162b4b680e921a623e127e8fa
Syntax
[ObsoleteAttribute("MONGODB-CR was replaced by SCRAM-SHA-1 in MongoDB 3.0, and is now deprecated.")]
public static MongoCredential CreateMongoCRCredential(
	string databaseName,
	string username,
	string password
)

Parameters

databaseName
Type: SystemString
Name of the database.
username
Type: SystemString
The username.
password
Type: SystemString
The password.

Return Value

Type: MongoCredential
A credential for MONGODB-CR.
See Also