using System; 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 operation timeout. /// /// An . /// INetConfSession CreateNetConfSession(ISession session, TimeSpan operationTimeout); } }