| 12345678910111213141516171819202122232425262728293031323334353637383940 | using System;namespace Renci.SshNet.Common{    /// <summary>    /// Provides data for <see cref="Renci.SshNet.ForwardedPort.RequestReceived"/> event.    /// </summary>    public class PortForwardEventArgs : EventArgs    {        /// <summary>        /// Gets request originator host.        /// </summary>        public string OriginatorHost { get; private set; }        /// <summary>        /// Gets request originator port.        /// </summary>        public uint OriginatorPort { get; private set; }        /// <summary>        /// Initializes a new instance of the <see cref="PortForwardEventArgs"/> class.        /// </summary>        /// <param name="host">The host.</param>        /// <param name="port">The port.</param>        internal PortForwardEventArgs(string host, uint port)        {            if (host == null)                throw new ArgumentNullException("host");            if (!host.IsValidHost())                throw new ArgumentException("host");            if (!port.IsValidPort())                throw new ArgumentOutOfRangeException("port");            this.OriginatorHost = host;            this.OriginatorPort = port;        }    }}
 |