GSSAttributeName.cs 407 B

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