| 1234567891011121314151617 |
- using System;
- using System.Threading;
- namespace Renci.SshNet
- {
- /// <summary>
- /// Represents SSH command that can be executed.
- /// </summary>
- public partial class SshCommand
- {
- /// <exception cref="ArgumentNullException"><paramref name=" action"/> is null.</exception>
- partial void ExecuteThread(Action action)
- {
- ThreadPool.QueueUserWorkItem(o => action());
- }
- }
- }
|