You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
350 B
C#

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