using System.Xml;
namespace UMC.SshNet.NetConf
{
internal interface INetConfSession : ISubsystemSession
{
///
/// Gets the NetConf server capabilities.
///
///
/// The NetConf server capabilities.
///
XmlDocument ServerCapabilities { get; }
///
/// Gets the NetConf client capabilities.
///
///
/// The NetConf client capabilities.
///
XmlDocument ClientCapabilities { get; }
XmlDocument SendReceiveRpc(XmlDocument rpc, bool automaticMessageIdHandling);
}
}