KeyboardInteractiveAuthenticationMethod.NET40.cs 310 B

12345678910111213
  1. using System;
  2. using System.Threading;
  3. namespace Renci.SshNet
  4. {
  5. public partial class KeyboardInteractiveAuthenticationMethod : AuthenticationMethod
  6. {
  7. partial void ExecuteThread(Action action)
  8. {
  9. ThreadPool.QueueUserWorkItem(o => action());
  10. }
  11. }
  12. }