Files
ssh.net/Renci.SshClient/Renci.SshNet.NET35/ShellStream.NET35.cs
T
olegkap_cp 2c424f6256 Refactor ShellStream to add BeginExpect
Fix Shell support in Silverlight and WindowsPhone applications
2013-01-03 22:12:32 +00:00

17 lines
357 B
C#

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