データグラム送信側
using System;
using System.Threading;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace send {
public partial class Form1 : Form {
public Form1() {
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e) {
}
private async void button1_Click(object sender, EventArgs e) { // async追加
// https://dobon.net/vb/dotnet/internet/udpclient.html
string remoteHost = "192.168.3.166"; //192.168.3.255 だと3セグメント全てに送信(ブロードキャスト)
int remotePort = 2002;
//UdpClientオブジェクトを作成する
System.Net.Sockets.UdpClient udp = new System.Net.Sockets.UdpClient();
long x = 0;
await Task.Run(() => {
for (; ; ) {
//送信するデータを作成する
Thread.Sleep(500);
string sendMsg = x.ToString();
x++;
byte[] sendBytes = System.Text.Encoding.UTF8.GetBytes(sendMsg);
//リモートホストを指定してデータを送信する
udp.Send(sendBytes, sendBytes.Length, remoteHost, remotePort);
}
});
}
}
}
--------------------------------------------------------------------------------------------------