TcpClient connection

  • Thread starter Thread starter chris
  • Start date Start date
C

chris

Is it possible to keep open more than one connection to different servers
with only one TcpClient? If no, is it safe to create about 50 instance of
TcpClient class?
Thanks!
 
It's not possible to keep more than one connection using one instance of
TcpClient. I think there should be no problem to create about 50 instances
of TcpClient class.

Jonny
 
Back
Top