Exemplo n.º 1
0
        protected List <HandlerResponse> ProcessOutputHandlers(FileSystemInfo outputPath)
        {
            var results =
                OutputHandlers.Where(_ => !string.IsNullOrWhiteSpace(outputPath?.FullName))
                .Select(handler => handler.Process(outputPath.FullName))
                .ToList();

            return(results);
        }