Renci.SshNet.IAuthenticationMethod
interface IAuthenticationMethod
namespace Renci.SshNet
{
internal interface IAuthenticationMethod
{
string[] AllowedAuthentications { get; }
string Name { get; }
AuthenticationResult Authenticate(ISession session);
}
}