using System; namespace Trinet.Core.IO.Ntfs { /// /// Represents the attributes of a file stream. /// [Flags] public enum FileStreamAttributes { /// /// No attributes. /// None = 0, /// /// Set if the stream contains data that is modified when read. /// ModifiedWhenRead = 1, /// /// Set if the stream contains security data. /// ContainsSecurity = 2, /// /// Set if the stream contains properties. /// ContainsProperties = 4, /// /// Set if the stream is sparse. /// Sparse = 8, } }