KeyboardInteractiveAuthenticationMethod.SilverlightShared.cs 312 B

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