Introduction to C# UDP sending and receiving request tool class

黄舟
Release: 2017-02-28 11:35:01
Original
1291 people have browsed it

Initialization:

ListeningPort = int.Parse(ConfigurationManager.AppSettings["ListeningPort"]);
SendingPort = int.Parse(ConfigurationManager.AppSettings["SendingPort"]);
SendingIp = ConfigurationManager.AppSettings["SendingIp"];
Copy after login

Listening:

public static void Listen()
        {
            Task.Run(() =>
            {
                var done = false;
                var listener = new UdpClient(ListeningPort);
                var groupEP = new IPEndPoint(IPAddress.Any, ListeningPort);
                string received_data;
                byte[] receive_byte_array;
                try
                {
                    _log.Error("############Service started###########");
                    while (true)
                    {
                        receive_byte_array = listener.Receive(ref groupEP);
                        Console.WriteLine("Received a broadcast from {0}", groupEP.ToString());
                        received_data = Encoding.UTF8.GetString(receive_byte_array, 0, receive_byte_array.Length);


                        ParseCommand(received_data);
                    }
                }
                catch (Exception e)
                {
                    _log.Error(e);
                    Console.WriteLine(e.ToString());
                }


                _log.Error("############Service stopped###########");
            });
        }
Copy after login

Sending:

public static void SendCommand(string xmlCmd)
        {
            try
            {
                var sending_socket = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp);
                var sending_end_point = new IPEndPoint(IPAddress.Parse(SendingIp), SendingPort);
                var send_buffer = Encoding.UTF8.GetBytes(xmlCmd);
                sending_socket.SendTo(send_buffer, sending_end_point);
                _log.Info("[COMMAND SENT] : " + xmlCmd);
            }
            catch (Exception ex)
            {
                _log.Error(ex);
            }
        }
Copy after login


The above is the introduction of the C# UDP sending and receiving request tool class. For more related content, please pay attention to the PHP Chinese website (www.php.cn)!


Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!