MongoDB.Database.Authenticate C# (CSharp) Method

Authenticate() public method

public Authenticate ( string username, string password ) : bool
username string
password string
return bool
        public bool Authenticate(string username, string password)
        {
            return Connection.Authenticate(username, password, Name);
        }