PasswordAuthenticationMethod.SilverlightShared.cs 282 B

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