Files
ssh.net/Renci.SshClient/Renci.SshNet.NET35/PasswordAuthenticationMethod.NET35.cs
T
olegkap_cp bc2fb5bedc Add support for multiple authentication methods
Minor comment fixes
2012-02-28 19:00:57 +00:00

17 lines
358 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
namespace Renci.SshNet
{
public partial class PasswordAuthenticationMethod
{
partial void ExecuteThread(Action action)
{
ThreadPool.QueueUserWorkItem((o) => { action(); });
}
}
}