| 1234567891011121314151617 | using System;using System.Threading;namespace Renci.SshNet{    public partial class PasswordAuthenticationMethod : AuthenticationMethod    {        /// <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());        }    }}
 |