MongoCredentialCreateGssapiCredential Method (String, SecureString) |
Creates a GSSAPI credential.
Namespace: MongoDB.DriverAssembly: MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.3.0
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