// Token: 0x060012B9 RID: 4793 RVA: 0x0006D0C8 File Offset: 0x0006B2C8
 public DiffFileGenerator(OABFile oldFile, OABFile newFile, Action abortProcessingOnShutdown, GenerationStats stats)
 {
     this.oldFile = oldFile;
     this.newFile = newFile;
     this.stats   = stats;
     this.abortProcessingOnShutdown = abortProcessingOnShutdown;
 }
Example #2
0
 // Token: 0x06001335 RID: 4917 RVA: 0x0006F7C4 File Offset: 0x0006D9C4
 public AddressListFileGenerator(ADObjectId addressList, OABFile addressListFile, PropertyManager propertyManager, FileSet fileSet, GenerationStats stats, Action abortProcessingOnShutdown)
 {
     this.addressListFile           = addressListFile;
     this.propertyManager           = propertyManager;
     this.fileSet                   = fileSet;
     this.stats                     = stats;
     this.abortProcessingOnShutdown = abortProcessingOnShutdown;
     this.adAddressListEnumerator   = ADAddressListEnumerator.Create(addressList, this.stats.OfflineAddressBook.OrganizationId, this.propertyManager.PropertyDefinitions, Globals.ADQueryPageSize, this.stats);
     this.firstPage                 = true;
     this.tempFiles                 = new List <FileStream>();
 }
 // Token: 0x060012BA RID: 4794 RVA: 0x0006D0EF File Offset: 0x0006B2EF
 public DiffFileGenerator(OABFile oldFile, OABFile newFile, GenerationStats stats) : this(oldFile, newFile, delegate()
 {
 }, stats)
 {
 }