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

17 lines
351 B
C#

using System;
using System.Threading;
namespace Renci.SshNet
{
/// <summary>
/// Represents instance of the SSH shell object
/// </summary>
public partial class Shell
{
partial void ExecuteThread(Action action)
{
ThreadPool.QueueUserWorkItem((o) => { action(); });
}
}
}