mirror of
https://github.com/sshnet/SSH.NET.git
synced 2026-09-21 10:23:28 +00:00
2c424f6256
Fix Shell support in Silverlight and WindowsPhone applications
17 lines
357 B
C#
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(); });
|
|
}
|
|
}
|
|
}
|