IAuthenticationMethod
interface IAuthenticationMethod
Base interface for authentication of a session using a given method.
using System.Collections.Generic;
namespace Renci.SshNet
{
internal interface IAuthenticationMethod
{
IList<string> AllowedAuthentications { get; }
string Name { get; }
AuthenticationResult Authenticate(ISession session);
}
}