Beispiel #1
0
 public ValidatePdfATests()
 {
     TaskParams = new ValidatePdfAParams()
     {
         OutputFileName = @"result.pdf"
     };
 }
Beispiel #2
0
        public ExecuteTaskResponse Process(ValidatePdfAParams parameters)
        {
            if (parameters == null)
            {
                throw new ArgumentException("Parameters should not be null", nameof(parameters));
            }

            return(base.Process(parameters));
        }