IConnectionInfoInternal
using Renci.SshNet.Messages.Authentication;
using System.Collections.Generic;
namespace Renci.SshNet
{
internal interface IConnectionInfoInternal : IConnectionInfo
{
IList<IAuthenticationMethod> AuthenticationMethods { get; }
void UserAuthenticationBannerReceived(object sender, MessageEventArgs<BannerMessage> e);
IAuthenticationMethod CreateNoneAuthenticationMethod();
}
}