-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathClientFile.cs
49 lines (41 loc) · 1.19 KB
/
ClientFile.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
using System;
using System.Net;
using System.Net.Sockets;
namespace UDP_Async_Client
{
class ClientFile
{
static void Main(string[] args)
{
Network netCode = new Network();
netCode.SendData();
}
}
class Network
{
Socket socket = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp);
IPEndPoint ipep = new IPEndPoint(IPAddress.Parse("127.0.0.1"), 23000);
byte[] buffer = { 0, 1 };
public void SendData()
{
SocketAsyncEventArgs asocket = new SocketAsyncEventArgs();
try
{
asocket.SetBuffer(buffer, 0, buffer.Length);
asocket.RemoteEndPoint = ipep;
socket.SendToAsync(asocket);
socket.Shutdown(SocketShutdown.Both);
socket.Close();
asocket.Completed += DoneSending;
}
catch (Exception excp)
{
Console.WriteLine(excp);
}
}
private void DoneSending(object sender, SocketAsyncEventArgs e)
{
Console.WriteLine("Data sent..");
}
}
}