| 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.12.2+a4a3888f4fb51bb518b1eb5002effc2d47f2ea6a
 Syntax
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
)<ObsoleteAttribute("MONGODB-CR was replaced by SCRAM-SHA-1 in MongoDB 3.0, and is now deprecated.")>
Public Shared Function CreateMongoCRCredential ( 
	databaseName As String,
	username As String,
	password As String
) As MongoCredential[<ObsoleteAttribute("MONGODB-CR was replaced by SCRAM-SHA-1 in MongoDB 3.0, and is now deprecated.")>]
static member CreateMongoCRCredential : 
        databaseName : string * 
        username : string * 
        password : string -> MongoCredential 
Parameters
- databaseName
- Type: SystemString
 Name of the database.
- username
- Type: SystemString
 The username.
- password
- Type: SystemString
 The password.
Return Value
Type: 
MongoCredentialA credential for MONGODB-CR.
 See Also
See Also