NodeNetAsync.Net.TcpServer.TcpServer C# (CSharp) Méthode

TcpServer() public méthode

public TcpServer ( ushort Port, string Bind = "127.0.0.1", bool CatchExceptions = true ) : System
Port ushort
Bind string
CatchExceptions bool
Résultat 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;
		}