using System; namespace SMBLibrary.SMB1 { [Flags] public enum OptionalSupportFlags : ushort { /// /// The server supports the use of SMB_FILE_ATTRIBUTES exclusive search attributes in client requests. /// SMB_SUPPORT_SEARCH_BITS = 0x01, } }