Read from udp in C# through event
C#
3
Posts
3
Posters
0
Views
1
Watching
-
Hi everybody I need to write a software that read udp packets with events.
Best Regards, Reza Shojaee
-
Hi everybody I need to write a software that read udp packets with events.
Best Regards, Reza Shojaee
This gives you some good looking results[^], sorry not to be more specific
Never underestimate the power of human stupidity RAH
-
Hi everybody I need to write a software that read udp packets with events.
Best Regards, Reza Shojaee
You could use Socket.BegineReceiveFrom[^] or UdpClient.BeginReceive[^] to asynchronously receive data from a socket using UDP. You could then fire a custom event from the callback method.