SimpleTCP
SimpleTCP copied to clipboard
Straightforward .NET library to handle the repetitive tasks of spinning up and working with TCP sockets (client and server).
I want to send message frm arduino nano to simple tcp server. How to do it? Please helt me!. thanks
When I call server.Stop, established connections are still active and the network port is opened.
Client instance has now event handlers that allows to change state in your code, when connection gets started or interrupted. Client.ConnectionStarted += Client_ConnectionStarted; Client.ConnectionInterrupted += Client_ConnectionInterrupted; You can do something...
I want to send a message to a specific client. I believe this is possible by adding another method to SimpleTCPServer.CS similar to... public void Broadcast(byte[] data) { foreach(var client...
hi i'm disconnecting and reconnecting to using ` Com2 = new SimpleTcpClient();` ` Com2 .Disconnect();` but i'm getting this error message  is there a better way to close the...
Added the udp control protocol to the project With new MessageUdp event for exclusive control of this new class
I've been using this framework for a while for simple TCP communications (thanks a lot for making our life easy), but I've reached a point where I need to send...
Hi , I'm using .Write() function i see that you have function WriteLineAndGetReply() with timeout but is it possible to use Timeout with Write() function? Thanks
I'm writing a program to monitor tank monitors and there is a handshake that's needed. It's a RAW socket that needs the key combination (Ctrl+A) to initiate the session. How...
Hello how are you? I'm using SimpleTCP to send messages to a device that is not a computer. It responds to a port that the SimpleTCP packet creates. The problem...