using System;
using System.Threading;
namespace Renci.SshNet
{
    /// 
    /// Provides functionality for local port forwarding
    /// 
    public partial class ForwardedPortLocal : ForwardedPort, IDisposable
    {
        private EventWaitHandle _listenerTaskCompleted;
        /// 
        /// Gets the bound host.
        /// 
        public string BoundHost { get; protected set; }
        /// 
        /// Gets the bound port.
        /// 
        public uint BoundPort { get; protected set; }
        /// 
        /// Gets the forwarded host.
        /// 
        public string Host { get; protected set; }
        /// 
        /// Gets the forwarded port.
        /// 
        public uint Port { get; protected set; }
        /// 
        /// Initializes a new instance of the  class.
        /// 
        /// The bound port.
        /// The host.
        /// The port.
        /// 
        ///