Apache.AuthenticationManager.DeleteUser C# (CSharp) Method

DeleteUser() public static method

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