IAuthenticationMethod
interface IAuthenticationMethod
Base interface for authentication of a session using a given method.
namespace Renci.SshNet
{
internal interface IAuthenticationMethod
{
string[] AllowedAuthentications { get; }
string Name { get; }
AuthenticationResult Authenticate(ISession session);
}
}