ImpersonationLevel.cs 302 B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace SMBLibrary.SMB2
  5. {
  6. public enum ImpersonationLevel : uint
  7. {
  8. Anonymous = 0x00000000,
  9. Identification = 0x00000001,
  10. Impersonation = 0x00000002,
  11. Delegate = 0x00000003,
  12. }
  13. }