Apache.AuthenticationManager.DeleteUser C# (CSharp) 메소드

DeleteUser() 공개 정적인 메소드

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