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

IConnectionInfo

interface IConnectionInfo
Represents remote connection information.
using Renci.SshNet.Common; using Renci.SshNet.Messages.Connection; using System; using System.Collections.Generic; using System.Text; namespace Renci.SshNet { internal interface IConnectionInfo { IDictionary<string, RequestInfo> ChannelRequests { get; } Encoding Encoding { get; } int RetryAttempts { get; } TimeSpan Timeout { get; } event EventHandler<AuthenticationBannerEventArgs> AuthenticationBanner; } }