ReaderOptions.cs 389 B

1234567891011121314
  1. using SharpCompress.Common;
  2. namespace SharpCompress.Readers
  3. {
  4. public class ReaderOptions : OptionsBase
  5. {
  6. /// <summary>
  7. /// Look for RarArchive (Check for self-extracting archives or cases where RarArchive isn't at the start of the file)
  8. /// </summary>
  9. public bool LookForHeader { get; set; }
  10. public string Password { get; set; }
  11. }
  12. }