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

Renci.SshNet.IConnectionInfo

interface IConnectionInfo
Represents remote connection information.
namespace Renci.SshNet { internal interface IConnectionInfo { TimeSpan ChannelCloseTimeout { get; } IDictionary<string, RequestInfo> ChannelRequests { get; } Encoding Encoding { get; } string Host { get; } int Port { get; } ProxyTypes ProxyType { get; } string ProxyHost { get; } int ProxyPort { get; } string ProxyUsername { get; } string ProxyPassword { get; } int RetryAttempts { get; } TimeSpan Timeout { get; } event EventHandler<AuthenticationBannerEventArgs> AuthenticationBanner; } }