using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
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 operation timeout.
        /// 
        /// An .
        /// 
        public INetConfSession CreateNetConfSession(ISession session, TimeSpan operationTimeout)
        {
            return new NetConfSession(session, operationTimeout);
        }
    }
}