OptionalSupportFlags.cs 324 B

12345678910111213
  1. using System;
  2. namespace SMBLibrary.SMB1
  3. {
  4. [Flags]
  5. public enum OptionalSupportFlags : ushort
  6. {
  7. /// <summary>
  8. /// The server supports the use of SMB_FILE_ATTRIBUTES exclusive search attributes in client requests.
  9. /// </summary>
  10. SMB_SUPPORT_SEARCH_BITS = 0x01,
  11. }
  12. }