using System; namespace SharpCompress.Common { [Flags] internal enum Options { /// /// No options specified /// None = 0, /// /// SharpCompress will keep the supplied streams open /// KeepStreamsOpen = 1, /// /// Look for RarArchive (Check for self-extracting archives or cases where RarArchive isn't at the start of the file) /// LookForHeader = 2, } }