Top "Tcplistener" questions

.NET Framework Class that listens for connections from TCP network clients.

Receiving and sending data in C#

I'm still trying to improve a little bit what I wrote before. Now I faced a problem with receiving data. …

c# tcpclient tcplistener
open source C# proxy server - any projects/examples?

Anyone know of any open source C# proxy server projects? Otherwise any articles/tutorials that cover how to use C# …

c# .net tcplistener proxy-server
Best way to accept multiple tcp clients?

I have a client/server infrastructure. At present they use a TcpClient and TcpListener to send a receive data between …

c# networking tcpclient tcplistener
How to use TCP client/listener in multithreaded c#?

I have written this code for my server: using System; using System.Collections.Generic; using System.Linq; using System.Text; …

c# tcp network-programming tcpclient tcplistener
TcpListener: Listen on every address, including GPRS IP address

We have a simple piece of legacy software with which we need to communicate using TCP/IP over port 15001. We …

c# .net networking tcp tcplistener
Accept TCP Client Async

I've been making a server. I am using TcpListener.AcceptTcpClientAsync() in an async method, but I have no idea how …

c# tcp tcpclient tcplistener
No connection could be made because the target machine actively refuses it

I'm working on a simple hello world TCP/IP client server app in C# and am unable to get my …

c# .net tcp tcpclient tcplistener
What is the async/await equivalent of a ThreadPool server?

I am working on a tcp server that looks something like this using synchronous apis and the thread pool: TcpListener …

c# threadpool async-await tcplistener
Adding SSL to TcpListen server?

I have made a simple server using TcpListener and it works great but now I would like the connection to …

c# tcp tcplistener
TcpListener: Detecting a client disconnect as opposed to a client not sending any data for a while

I was looking how to detect a 'client disconnect' when using a TcpListener. All the answers seem to be similar …

c# tcplistener