using Renci.SshNet.NetConf; namespace Renci.SshNet { internal partial class ServiceFactory { /// /// 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 . /// public INetConfSession CreateNetConfSession(ISession session, int operationTimeout) { return new NetConfSession(session, operationTimeout); } } }