// dnlib: See LICENSE.txt for more info
using System;
namespace dnlib.DotNet.MD {
///
/// MDStream flags
///
[Flags]
public enum MDStreamFlags : byte {
/// #Strings stream is big and requires 4 byte offsets
BigStrings = 1,
/// #GUID stream is big and requires 4 byte offsets
BigGUID = 2,
/// #Blob stream is big and requires 4 byte offsets
BigBlob = 4,
///
Padding = 8,
///
DeltaOnly = 0x20,
/// Extra data follows the row counts
ExtraData = 0x40,
/// Set if certain tables can contain deleted rows. The name column (if present) is set to "_Deleted"
HasDelete = 0x80,
}
}