| 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.7.3+Branch.v2.7.x.Sha.2f1f2be13a23b8520cb9c2ee8439c022f9a03efe
 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,
	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
See Also