| 1234567891011121314151617181920212223242526 |
- using System;
- using System.Threading;
- namespace Renci.SshNet
- {
- /// <summary>
- /// Provides functionality for local port forwarding
- /// </summary>
- public partial class ForwardedPortLocal
- {
- partial void ExecuteThread(Action action)
- {
- ThreadPool.QueueUserWorkItem((o) => action());
- }
- partial void InternalStart()
- {
- throw new NotImplementedException();
- }
- partial void InternalStop()
- {
- throw new NotImplementedException();
- }
- }
- }
|