Ejemplo n.º 1
0
 public ProtectTests()
 {
     TaskParams = new ProtectParams(Settings.RightPassword)
     {
         OutputFileName = @"result.pdf"
     };
 }
Ejemplo n.º 2
0
        public ExecuteTaskResponse Process(ProtectParams parameters)
        {
            if (parameters == null)
            {
                throw new ArgumentException("Parameters should not be null", nameof(parameters));
            }

            return(base.Process(parameters));
        }