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