IForwardedPort.cs 365 B

123456789101112131415
  1. using System;
  2. namespace Renci.SshNet
  3. {
  4. /// <summary>
  5. /// Supports port forwarding functionality.
  6. /// </summary>
  7. public interface IForwardedPort
  8. {
  9. /// <summary>
  10. /// The <see cref="Closing"/> event occurs as the forwarded port is being stopped.
  11. /// </summary>
  12. event EventHandler Closing;
  13. }
  14. }