using System; using System.Net.Sockets; using System.Net; using System.Threading; using Renci.SshNet.Channels; namespace Renci.SshNet { /// /// Provides functionality for local port forwarding /// public partial class ForwardedPortLocal { partial void ExecuteThread(Action action) { ThreadPool.QueueUserWorkItem((o) => { action(); }); } } }