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.

33 lines
798 B
C#

9 months ago
using Renci.SshNet.Common;
namespace Renci.SshNet.Messages.Connection
{
/// <summary>
/// Base class for open channel messages
/// </summary>
public abstract class ChannelOpenInfo : SshData
{
/// <summary>
/// Gets the type of the channel to open.
/// </summary>
/// <value>
/// The type of the channel to open.
/// </value>
public abstract string ChannelType { get; }
/// <summary>
/// Called when type specific data need to be loaded.
/// </summary>
protected override void LoadData()
{
}
/// <summary>
/// Called when type specific data need to be saved.
/// </summary>
protected override void SaveData()
{
}
}
}