2
0

PasswordAuthenticationMethod.NET35.cs 358 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading;
  6. namespace Renci.SshNet
  7. {
  8. public partial class PasswordAuthenticationMethod
  9. {
  10. partial void ExecuteThread(Action action)
  11. {
  12. ThreadPool.QueueUserWorkItem((o) => { action(); });
  13. }
  14. }
  15. }