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.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,
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