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

IConnectionInfoInternal

Represents remote connection information.
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(); } }