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

17 lines
371 B
C#

using System;
using System.Threading;
namespace Renci.SshNet
{
/// <summary>
/// Provides functionality for remote port forwarding
/// </summary>
public partial class ForwardedPortRemote
{
partial void ExecuteThread(Action action)
{
ThreadPool.QueueUserWorkItem((o) => { action(); });
}
}
}