Sockets/TCPClient

A

Adam Honek

Hello,

When we have the following:

Private MyListener As TcpListener

And then we want to initiate a client connection then what is the technical
difference
between the following:

Dim x As New Client(MyListener .AcceptSocket)

Dim x As New Client(MyListener .AcceptTcpClient)

I.E. from what I see through various source code samples we can either
initialize
a connection via a socket or via a TCPclient.

Isn't TCP just a protocol???

Could someone explain or point me to some good online guide as to the
differences and what is best etc.

Thanks,

Adam
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top