Files

23 lines
554 B
C#
Raw Permalink Normal View History

2013-04-07 10:58:58 +01:00
using System;
namespace SharpCompress.Common
{
[Flags]
public enum Options
{
/// <summary>
/// No options specified
/// </summary>
None = 0,
2013-04-28 12:32:55 +01:00
2013-04-07 10:58:58 +01:00
/// <summary>
/// SharpCompress will keep the supplied streams open
/// </summary>
KeepStreamsOpen = 1,
2013-04-28 12:32:55 +01:00
2013-04-07 10:58:58 +01:00
/// <summary>
/// Look for RarArchive (Check for self-extracting archives or cases where RarArchive isn't at the start of the file)
/// </summary>
LookForHeader = 2,
}
2013-04-28 12:32:55 +01:00
}