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