NodeNetAsync.Net.TcpServer.TcpServer C# (CSharp) Method

TcpServer() public method

public TcpServer ( ushort Port, string Bind = "127.0.0.1", bool CatchExceptions = true ) : System
Port ushort
Bind string
CatchExceptions bool
return System
		public TcpServer(ushort Port, string Bind = "127.0.0.1", bool CatchExceptions = true)
		{
			this.TcpListener = new TcpListener(IPAddress.Parse(Bind), Port);
			this.CatchExceptions = CatchExceptions;
		}