You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
504 B
C#

9 months ago
namespace Renci.SshNet
{
/// <summary>
/// Represents possible authentication methods results
/// </summary>
public enum AuthenticationResult
{
/// <summary>
/// Authentication was successful.
/// </summary>
Success,
/// <summary>
/// Authentication completed with partial success.
/// </summary>
PartialSuccess,
/// <summary>
/// Authentication failed.
/// </summary>
Failure
}
}