| 1234567891011121314151617181920 |
- using System;
- namespace Renci.SshNet
- {
- /// <summary>
- /// Provides functionality for local port forwarding
- /// </summary>
- public partial class ForwardedPortLocal
- {
- partial void InternalStart()
- {
- throw new NotImplementedException();
- }
- partial void InternalStop(TimeSpan timeout)
- {
- throw new NotImplementedException();
- }
- }
- }
|