Apache.AuthenticationManager.DeleteUser C# (CSharp) Méthode

DeleteUser() public static méthode

public static DeleteUser ( string user ) : bool
user string
Résultat bool
        public static bool DeleteUser(string user)
        {
            string response = ExecuteWith(String.Format("-x {0} {1}", Db, user));
            return response.Contains("modified.");
        }