using System; using System.Threading; namespace Renci.SshNet { /// /// Represents instance of the SSH shell object /// public partial class Shell { /// is null. partial void ExecuteThread(Action action) { ThreadPool.QueueUserWorkItem(o => action()); } } }