ISubsystemSession.cs 541 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Renci.SshNet
  6. {
  7. /// <summary>
  8. /// Base interface for SSH subsystem implementations.
  9. /// </summary>
  10. internal interface ISubsystemSession
  11. {
  12. /// <summary>
  13. /// Gets a value indicating whether this session is open.
  14. /// </summary>
  15. /// <value>
  16. /// <c>true</c> if this session is open; otherwise, <c>false</c>.
  17. /// </value>
  18. bool IsOpen { get; }
  19. }
  20. }