private bool CheckImageEffect(CLICommand command) { if (command.Command.Equals("ImageEffect", StringComparison.InvariantCultureIgnoreCase)) { if (!string.IsNullOrEmpty(command.Parameter) && command.Parameter.EndsWith(".sxie", StringComparison.OrdinalIgnoreCase)) { TaskHelpers.ImportImageEffect(command.Parameter); } return(true); } return(false); }