MongoCredentialCreateMongoCRCredential Method (String, String, SecureString) | 
 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.22.0+75246110ed1247226fcc7f8eb2c54ffab745693e
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,
	SecureString 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 SecureString
) 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 : SecureString -> MongoCredential 
Parameters
- databaseName
 - Type: SystemString
Name of the database. - username
 - Type: SystemString
The username. - password
 - Type: System.SecuritySecureString
The password. 
Return Value
Type: 
MongoCredentialA credential for MONGODB-CR.
See Also