| 1234567891011121314151617181920 | using System;using System.Threading;namespace Renci.SshNet{    /// <summary>    /// Represents SSH command that can be executed.    /// </summary>    public partial class SshCommand     {        /// <summary>        /// Executes the specified action in a separate thread.        /// </summary>        /// <param name="action">The action to execute.</param>        partial void ExecuteThread(Action action)        {            ThreadPool.QueueUserWorkItem(o => action());        }    }}
 |