using System; using System.Threading.Tasks; namespace Renci.SshNet { /// /// Represents instance of the SSH shell object /// public partial class Shell { partial void ExecuteThread(Action action) { Task.Factory.StartNew(action); } } }