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

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