Top "Tcpclient" questions

.NET Framework class, providing client connections for TCP network services.

Sending and receiving data over a network using TcpClient

I need to develop a service that will connect to a TCP server. Main tasks are reading incoming messages and …

c# network-programming tcpclient
Connecting to TCP Socket from browser using javascript

I have a vb.net application that opens a socket and listens on it. I need to communicate via this …

javascript html node.js sockets tcpclient
In C#, how to check if a TCP port is available?

In C# to use a TcpClient or generally to connect to a socket how can I first check if a …

c# .net tcp tcpclient
How to set the timeout for a TcpClient?

I have a TcpClient which I use to send data to a listener on a remote computer. The remote computer …

c# winforms networking tcpclient
What is the correct way to read from NetworkStream in .NET

I've been struggling with this and can't find a reason why my code is failing to properly read from a …

c# .net sockets tcpclient
TCP\IP client - EHOSTUNREACH (No route to host)

I am trying to develop a client server TCP/IP application. I have a server running on my PC and …

java android tcpclient
Simple TCPClient/Listener ("hello world") example

All I'm looking for is a simple TCPClient/Listener ("hello world") example. I'm a newbie and Microsoft TCPClient/Listener class …

vb.net client-server tcpclient tcplistener
How do I get a client's IP address from behind a load balancer?

I am using TcpClient to listen on a port for requests. When the requests come in from the client I …

c# .net tcpclient
How to check if TcpClient Connection is closed?

I'm playing around with the TcpClient and I'm trying to figure out how to make the Connected property say false …

c# sockets tcpclient networkstream
TcpClient - An existing connection was forcibly closed by the remote host

The Info I have been developing a web http server in c# and decided to add a remote console feature. …

c# tcpclient tcplistener