AuthenticationResult.cs 617 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Renci.SshNet
  6. {
  7. /// <summary>
  8. /// Represents possible authentication methods results
  9. /// </summary>
  10. public enum AuthenticationResult
  11. {
  12. /// <summary>
  13. /// Authentication was successful.
  14. /// </summary>
  15. Success,
  16. /// <summary>
  17. /// Authentication completed with partial success.
  18. /// </summary>
  19. PartialSuccess,
  20. /// <summary>
  21. /// Authentication failed.
  22. /// </summary>
  23. Failure
  24. }
  25. }