What is the difference between TCP listener and TCP server? I want to communicate with some devices using TCP/IP protocol and want PC to organize the communication by using C#.
What is the difference between TCP listener and TCP server? I want to communicate
Share
The .NET class
TcpListenerimplements a TCP server. That’s how the two terms are related. So if you want a TCP server in your application, use theTcpListener.