First Time TcpClient user

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

"..Overloading.. Constructer Class... Async stream read/send"
All I want to do is -- WaitforString "UserID & PW" to login to a router,
capture some
config info and be on my way.
Using TcpClient in my first OOP look most over daunting a task.
Are there some simple examples that I may learn from?
 
You can use sync I/O for that purpose, it will be simpler.
TcpClient is a good abstraction over pure sockets. If you need basic network
I/O TcpClient will do.
 
Back
Top