MongoCredentialCreateGssapiCredential Method (String, SecureString) |
Creates a GSSAPI credential.
Namespace:
MongoDB.Driver
Assembly:
MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.8.0+cc573f3e1f48f39162b4b680e921a623e127e8fa
Syntax public static MongoCredential CreateGssapiCredential(
string username,
SecureString password
)
Public Shared Function CreateGssapiCredential (
username As String,
password As SecureString
) As MongoCredential
static member CreateGssapiCredential :
username : string *
password : SecureString -> MongoCredential
Parameters
- username
- Type: SystemString
The username. - password
- Type: System.SecuritySecureString
The password.
Return Value
Type:
MongoCredentialA credential for GSSAPI.
See Also