mirror of
https://github.com/sshnet/SSH.NET.git
synced 2026-09-21 02:13:23 +00:00
17 lines
423 B
C#
17 lines
423 B
C#
using System;
|
|
using System.Threading;
|
|
|
|
namespace Renci.SshNet
|
|
{
|
|
/// <summary>
|
|
/// Provides connection information when keyboard interactive authentication method is used
|
|
/// </summary>
|
|
public partial class KeyboardInteractiveConnectionInfo
|
|
{
|
|
partial void ExecuteThread(Action action)
|
|
{
|
|
ThreadPool.QueueUserWorkItem((o) => { action(); });
|
|
}
|
|
}
|
|
}
|