using System;
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);
}
}
}