Esempio n. 1
0
 public PdfTokenScanner(IInputBytes inputBytes, IObjectLocationProvider objectLocationProvider, IFilterProvider filterProvider)
 {
     this.inputBytes             = inputBytes;
     this.objectLocationProvider = objectLocationProvider;
     this.filterProvider         = filterProvider;
     coreTokenScanner            = new CoreTokenScanner(inputBytes);
 }
Esempio n. 2
0
 public PdfTokenScanner(IInputBytes inputBytes, IObjectLocationProvider objectLocationProvider, ILookupFilterProvider filterProvider,
                        IEncryptionHandler encryptionHandler)
 {
     this.inputBytes             = inputBytes;
     this.objectLocationProvider = objectLocationProvider;
     this.filterProvider         = filterProvider;
     this.encryptionHandler      = encryptionHandler;
     coreTokenScanner            = new CoreTokenScanner(inputBytes);
 }