<PackageReference Include="SSH.NET" Version="2016.1.0" />

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); } }