資源簡介
socket寫的一個UDP簡單的網絡會議
代碼片段和文件信息
using?System;
using?System.Collections.Generic;
using?System.ComponentModel;
using?System.Data;
using?System.Drawing;
using?System.Text;
using?System.Windows.Forms;
using?System.Net;
using?System.Net.Sockets;
using?System.Threading;
namespace?NetMeetingExample
{
????public?partial?class?FormMeeting?:?Form
????{
????????private?enum?ListBoxOperation?{?AddItem?RemoveItem?};
????????private?delegate?void?SetListBoxItemCallback(
????????????ListBox?listbox?string?text?ListBoxOperation?operation);
????????SetListBoxItemCallback?listBoxCallback;
????????//使用的IP地址
????????private?IPAddress?broderCastIp?=?IPAddress.Parse(“225.100.0.1“);
????????//使用的接收端口號
????????private?int?port?=?8001;
????????private?UdpClient?udpClient;
????????public?FormMeeting()
????????{
?????
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件????????941??2014-06-05?13:58??NetMeetingExample.sln
?????文件??????13824??2014-06-05?16:53??NetMeetingExample\bin\Debug\NetMeetingExample.exe
?????文件??????40448??2014-06-05?16:53??NetMeetingExample\bin\Debug\NetMeetingExample.pdb
?????文件??????11608??2014-06-10?14:18??NetMeetingExample\bin\Debug\NetMeetingExample.vshost.exe
?????文件????????490??2013-06-18?20:28??NetMeetingExample\bin\Debug\NetMeetingExample.vshost.exe.manifest
?????文件??????13824??2008-12-07?10:39??NetMeetingExample\bin\網絡會議\NetMeetingExample.exe
?????文件??????36352??2008-12-07?10:39??NetMeetingExample\bin\網絡會議\NetMeetingExample.pdb
?????文件??????14328??2008-12-07?10:38??NetMeetingExample\bin\網絡會議\NetMeetingExample.vshost.exe
?????文件????????490??2007-07-21?01:33??NetMeetingExample\bin\網絡會議\NetMeetingExample.vshost.exe.manifest
?????文件???????8237??2014-06-05?16:53??NetMeetingExample\FormMeeting.cs
?????文件???????7600??2006-02-05?02:53??NetMeetingExample\FormMeeting.Designer.cs
?????文件???????5814??2006-02-05?02:53??NetMeetingExample\FormMeeting.resx
?????文件???????5087??2014-06-05?14:04??NetMeetingExample\NetMeetingExample.csproj
?????文件????????452??2014-06-05?14:04??NetMeetingExample\NetMeetingExample.csproj.user
?????文件???????1229??2014-06-05?16:51??NetMeetingExample\obj\Debug\DesignTimeResolveAssemblyReferences.cache
?????文件???????5352??2014-06-05?16:53??NetMeetingExample\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache
?????文件???????5078??2014-06-10?14:18??NetMeetingExample\obj\Debug\NetMeetingExample.csproj.FileListAbsolute.txt
?????文件????????853??2009-03-21?00:29??NetMeetingExample\obj\Debug\NetMeetingExample.csproj.GenerateResource.Cache
?????文件???????1339??2014-06-05?16:52??NetMeetingExample\obj\Debug\NetMeetingExample.csprojResolveAssemblyReference.cache
?????文件??????13824??2014-06-05?16:53??NetMeetingExample\obj\Debug\NetMeetingExample.exe
?????文件????????180??2014-06-05?16:52??NetMeetingExample\obj\Debug\NetMeetingExample.FormMeeting.resources
?????文件??????40448??2014-06-05?16:53??NetMeetingExample\obj\Debug\NetMeetingExample.pdb
?????文件????????180??2014-06-05?16:52??NetMeetingExample\obj\Debug\NetMeetingExample.Properties.Resources.resources
?????文件???????4608??2014-06-05?13:58??NetMeetingExample\obj\Debug\TempPE\Properties.Resources.Designer.cs.dll
?????文件????????344??2006-04-19?15:13??NetMeetingExample\obj\NetMeetingExample.csproj.FileList.txt
?????文件????????482??2006-02-05?02:15??NetMeetingExample\Program.cs
?????文件???????1190??2006-02-04?18:44??NetMeetingExample\Properties\AssemblyInfo.cs
?????文件???????2874??2014-06-05?13:58??NetMeetingExample\Properties\Resources.Designer.cs
?????文件???????5612??2006-02-04?18:44??NetMeetingExample\Properties\Resources.resx
?????文件???????1117??2014-06-05?13:58??NetMeetingExample\Properties\Settings.Designer.cs
............此處省略14個文件信息
評論
共有 條評論