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