GSSAttributeName.cs 448 B

1234567891011121314151617181920
  1. using System;
  2. namespace SMBLibrary.Authentication.GSSAPI
  3. {
  4. public enum GSSAttributeName
  5. {
  6. AccessToken,
  7. DomainName,
  8. IsAnonymous,
  9. /// <summary>
  10. /// Permit access to this user via the guest user account if the normal authentication process fails.
  11. /// </summary>
  12. IsGuest,
  13. MachineName,
  14. OSVersion,
  15. SessionKey,
  16. UserName,
  17. }
  18. }