C# How to make a simple UDP server

2019-01-11 19:33发布

问题:

Can I make UDP server and client using UdpClient class? And I need to send an Image from the server to all Clients. Can some show me a code sample. I'm new to this.

回答1:

Check out the following sample codes:

Listener

Simple UDP Client



回答2:

System.Net.Sockets.UdpClient is tricky. Some of the constructors specify the local end point, while others specify the remote end point. To establish two way communication, use a constructor that specifies the local end point.

Specify the default remote end point with Connect, or use a Send/BeginSend overload that specifies the remote end point.



标签: c# sockets udp