mirror of
https://github.com/sshnet/SSH.NET.git
synced 2026-09-21 02:13:23 +00:00
bc2fb5bedc
Minor comment fixes
17 lines
368 B
C#
17 lines
368 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading;
|
|
|
|
namespace Renci.SshNet
|
|
{
|
|
public partial class KeyboardInteractiveAuthenticationMethod
|
|
{
|
|
partial void ExecuteThread(Action action)
|
|
{
|
|
ThreadPool.QueueUserWorkItem((o) => { action(); });
|
|
}
|
|
}
|
|
}
|