mirror of https://gitee.com/apiumc/Gateway.git
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
672 B
C#
26 lines
672 B
C#
using System.Xml;
|
|
|
|
namespace UMC.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);
|
|
}
|
|
}
|