SessionChannelOpenInfo.cs 636 B

123456789101112131415161718192021222324
  1. namespace Renci.SshNet.Messages.Connection
  2. {
  3. /// <summary>
  4. /// Used to open "session" channel type
  5. /// </summary>
  6. internal class SessionChannelOpenInfo : ChannelOpenInfo
  7. {
  8. /// <summary>
  9. /// Specifies channel open type
  10. /// </summary>
  11. public const string NAME = "session";
  12. /// <summary>
  13. /// Gets the type of the channel to open.
  14. /// </summary>
  15. /// <value>
  16. /// The type of the channel to open.
  17. /// </value>
  18. public override string ChannelType
  19. {
  20. get { return NAME; }
  21. }
  22. }
  23. }