namespace Renci.SshNet.Messages.Connection
{
    /// 
    /// Used to open "session" channel type
    /// 
    internal class SessionChannelOpenInfo : ChannelOpenInfo
    {
        /// 
        /// Specifies channel open type
        /// 
        public const string NAME = "session";
        /// 
        /// Gets the type of the channel to open.
        /// 
        /// 
        /// The type of the channel to open.
        /// 
        public override string ChannelType
        {
            get { return NAME; }
        }
    }
}