資源簡(jiǎn)介
實(shí)現(xiàn)UDP通信
代碼片段和文件信息
using?System;
using?System.Collections.Generic;
using?System.ComponentModel;
using?System.Data;
using?System.Drawing;
using?System.Linq;
using?System.Text;
using?System.Windows.Forms;
using?System.Net;
using?System.Net.Sockets;
using?System.Threading;
namespace?UDP通信程序
{
????public?partial?class?UDPserverForm?:?Form
????{
????????private?UdpClient?udpserver;//UDP服務(wù)器
????????private?Thread?udpListenThread;//UDP監(jiān)聽(tīng)線(xiàn)程
????????private?IPEndPoint?remoteIpAndPort;//遠(yuǎn)程IP地址和端口
????????private?delegate?void?displayMessageDelegate();//委托
????????
????????
????????public?UDPserverForm()
????????{
????????????InitializeComponent();????????????
????????????udpListenThread?=?new?Thread(new?ThreadStart(udpListen));//創(chuàng)建監(jiān)聽(tīng)線(xiàn)程
????????????udpListenThread.IsBackground?=?true;//設(shè)為后臺(tái)
?屬性????????????大小?????日期????時(shí)間???名稱(chēng)
-----------?---------??----------?-----??----
?????文件??????51712??2012-12-10?17:48??UDP通信程序(1)\UDP通信程序\UDP.vsd
?????文件????????117??2012-12-10?17:26??UDP通信程序(1)\UDP通信程序\UDP通信程序\app.config
?????文件???????1656??2012-12-13?09:35??UDP通信程序(1)\UDP通信程序\UDP通信程序\bin\Debug\UDP通信程序.application
?????文件??????13312??2012-12-13?09:35??UDP通信程序(1)\UDP通信程序\UDP通信程序\bin\Debug\UDP通信程序.exe
?????文件????????117??2012-12-10?17:26??UDP通信程序(1)\UDP通信程序\UDP通信程序\bin\Debug\UDP通信程序.exe.config
?????文件???????4013??2012-12-13?09:35??UDP通信程序(1)\UDP通信程序\UDP通信程序\bin\Debug\UDP通信程序.exe.manifest
?????文件??????26112??2012-12-13?09:35??UDP通信程序(1)\UDP通信程序\UDP通信程序\bin\Debug\UDP通信程序.pdb
?????文件???????1656??2012-12-13?09:35??UDP通信程序(1)\UDP通信程序\UDP通信程序\bin\Debug\UDP通信程序.vshost.application
?????文件??????11608??2016-03-09?15:44??UDP通信程序(1)\UDP通信程序\UDP通信程序\bin\Debug\UDP通信程序.vshost.exe
?????文件????????117??2012-12-10?17:26??UDP通信程序(1)\UDP通信程序\UDP通信程序\bin\Debug\UDP通信程序.vshost.exe.config
?????文件???????4013??2012-12-13?09:35??UDP通信程序(1)\UDP通信程序\UDP通信程序\bin\Debug\UDP通信程序.vshost.exe.manifest
?????文件???????6933??2016-03-09?15:11??UDP通信程序(1)\UDP通信程序\UDP通信程序\Form1.cs
?????文件??????10342??2012-12-13?09:10??UDP通信程序(1)\UDP通信程序\UDP通信程序\Form1.Designer.cs
?????文件???????5817??2012-12-13?09:10??UDP通信程序(1)\UDP通信程序\UDP通信程序\Form1.resx
?????文件???????1229??2016-03-09?15:44??UDP通信程序(1)\UDP通信程序\UDP通信程序\obj\x86\Debug\DesignTimeResolveAssemblyReferences.cache
?????文件???????6304??2016-03-09?15:00??UDP通信程序(1)\UDP通信程序\UDP通信程序\obj\x86\Debug\DesignTimeResolveAssemblyReferencesInput.cache
?????文件????????740??2012-12-13?09:35??UDP通信程序(1)\UDP通信程序\UDP通信程序\obj\x86\Debug\GenerateResource-ResGen.read.1.tlog
?????文件????????698??2012-12-13?09:35??UDP通信程序(1)\UDP通信程序\UDP通信程序\obj\x86\Debug\GenerateResource-ResGen.write.1.tlog
?????文件???????4608??2012-12-10?18:00??UDP通信程序(1)\UDP通信程序\UDP通信程序\obj\x86\Debug\TempPE\Properties.Resources.Designer.cs.dll
?????文件???????1656??2012-12-13?09:35??UDP通信程序(1)\UDP通信程序\UDP通信程序\obj\x86\Debug\UDP通信程序.application
?????文件???????3260??2016-03-09?16:25??UDP通信程序(1)\UDP通信程序\UDP通信程序\obj\x86\Debug\UDP通信程序.csproj.FileListAbsolute.txt
?????文件????????847??2016-03-09?11:03??UDP通信程序(1)\UDP通信程序\UDP通信程序\obj\x86\Debug\UDP通信程序.csproj.GenerateResource.Cache
?????文件???????1757??2016-03-09?15:52??UDP通信程序(1)\UDP通信程序\UDP通信程序\obj\x86\Debug\UDP通信程序.csprojResolveAssemblyReference.cache
?????文件??????13312??2012-12-13?09:35??UDP通信程序(1)\UDP通信程序\UDP通信程序\obj\x86\Debug\UDP通信程序.exe
?????文件???????4013??2012-12-13?09:35??UDP通信程序(1)\UDP通信程序\UDP通信程序\obj\x86\Debug\UDP通信程序.exe.manifest
?????文件??????26112??2012-12-13?09:35??UDP通信程序(1)\UDP通信程序\UDP通信程序\obj\x86\Debug\UDP通信程序.pdb
?????文件????????180??2016-03-09?11:03??UDP通信程序(1)\UDP通信程序\UDP通信程序\obj\x86\Debug\UDP通信程序.Properties.Resources.resources
?????文件????????180??2016-03-09?11:03??UDP通信程序(1)\UDP通信程序\UDP通信程序\obj\x86\Debug\UDP通信程序.UDPserverForm.resources
?????文件????????504??2012-12-10?13:02??UDP通信程序(1)\UDP通信程序\UDP通信程序\Program.cs
?????文件???????1362??2012-12-07?15:25??UDP通信程序(1)\UDP通信程序\UDP通信程序\Properties\AssemblyInfo.cs
............此處省略22個(gè)文件信息
評(píng)論
共有 條評(píng)論