You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
674 B
C#

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