Files
ssh.net/Renci.SshClient/Renci.SshNet.NET35/SftpClient.NET35.cs
T
2011-08-25 14:00:39 +00:00

16 lines
311 B
C#

using System;
using System.Threading;
namespace Renci.SshNet
{
/// <summary>
///
/// </summary>
public partial class SftpClient
{
partial void ExecuteThread(Action action)
{
ThreadPool.QueueUserWorkItem((o) => { action(); });
}
}
}