using System; namespace Renci.SshNet { /// /// Supports port forwarding functionality. /// public interface IForwardedPort { /// /// The event occurs as the forwarded port is being stopped. /// event EventHandler Closing; } }