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