using Renci.SshNet.NetConf; namespace Renci.SshNet { internal partial interface IServiceFactory { /// /// Creates a new in a given /// and with the specified operation timeout. /// /// The to create the in. /// The number of milliseconds to wait for an operation to complete, or -1 to wait indefinitely. /// /// An . /// INetConfSession CreateNetConfSession(ISession session, int operationTimeout); } }