KeyboardInteractiveAuthenticationMethod.SilverlightShared.cs 554 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Net;
  3. using System.Windows;
  4. using System.Windows.Controls;
  5. using System.Windows.Documents;
  6. using System.Windows.Ink;
  7. using System.Windows.Input;
  8. using System.Windows.Media;
  9. using System.Windows.Media.Animation;
  10. using System.Windows.Shapes;
  11. using System.Threading;
  12. namespace Renci.SshNet
  13. {
  14. public partial class KeyboardInteractiveAuthenticationMethod
  15. {
  16. partial void ExecuteThread(Action action)
  17. {
  18. ThreadPool.QueueUserWorkItem((o) => { action(); });
  19. }
  20. }
  21. }