Coap.Proxy.ServerListerner.ServerListerner C# (CSharp) Method

ServerListerner() public method

proxy port
public ServerListerner ( int port ) : System
port int proxy port
return System
        public ServerListerner(int port)
        {
            this.listenPort = port;
            this.listener = new TcpListener(IPAddress.Any, this.listenPort);
            //this.listener = new TcpListener(IPAddress.IPv6Any, port);
        }
        /// <summary>