Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #72.8K
~9K People Reached
Favorite Forums
Favorite Tags

1 Posted Topic

Member Avatar for skatamatic

This is exactly what I wanted in a TCP client. I pulled your class into a project and added: EventDrivenTCPClient client = new EventDrivenTCPClient( IPAddress.Parse("192.168.1.101"), int.Parse("9010")); //Initialize the events client.DataReceived += new EventDrivenTCPClient.delDataReceived(client_DataReceived); client.ConnectionStatusChanged += new EventDrivenTCPClient.delConnectionStatusChanged(client_ConnectionStatusChanged); to my existing code. Then I tried to telenet to the IP address …

Member Avatar for Alejandro_8
6
9K

The End.