資源簡介
在同一個局域網(wǎng)內(nèi),用戶可以加入會議室進行交流。
代碼片段和文件信息
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(“224.100.0.1“);
????????//使用的接收端口號
????????private?int?port?=?8001;
????????private?UdpClient?udpClient;
????????public?FormMeeting()
???
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件???????8268??2009-07-17?16:38??E04-NetMeetingExample\Backup\NetMeetingExample\FormMeeting.cs
?????文件???????7600??2006-02-05?02:53??E04-NetMeetingExample\Backup\NetMeetingExample\FormMeeting.Designer.cs
?????文件???????5814??2006-02-05?02:53??E04-NetMeetingExample\Backup\NetMeetingExample\FormMeeting.resx
?????文件???????3479??2008-12-07?10:37??E04-NetMeetingExample\Backup\NetMeetingExample\NetMeetingExample.csproj
?????文件????????482??2006-02-05?02:15??E04-NetMeetingExample\Backup\NetMeetingExample\Program.cs
?????文件???????1190??2006-02-04?18:44??E04-NetMeetingExample\Backup\NetMeetingExample\Properties\AssemblyInfo.cs
?????文件???????2858??2008-12-07?10:37??E04-NetMeetingExample\Backup\NetMeetingExample\Properties\Resources.Designer.cs
?????文件???????5612??2006-02-04?18:44??E04-NetMeetingExample\Backup\NetMeetingExample\Properties\Resources.resx
?????文件???????1115??2008-12-07?10:37??E04-NetMeetingExample\Backup\NetMeetingExample\Properties\Settings.Designer.cs
?????文件????????249??2006-02-04?18:44??E04-NetMeetingExample\Backup\NetMeetingExample\Properties\Settings.settings
?????文件????????941??2008-12-07?10:37??E04-NetMeetingExample\Backup\NetMeetingExample.sln
????..A..H.?????22016??2009-07-17?16:38??E04-NetMeetingExample\Backup\NetMeetingExample.v12.suo
?????文件??????14336??2018-06-21?09:00??E04-NetMeetingExample\NetMeetingExample\bin\Debug\NetMeetingExample.exe
?????文件??????40448??2018-06-21?09:00??E04-NetMeetingExample\NetMeetingExample\bin\Debug\NetMeetingExample.pdb
?????文件??????22704??2018-06-21?09:01??E04-NetMeetingExample\NetMeetingExample\bin\Debug\NetMeetingExample.vshost.exe
?????文件????????490??2013-03-18?17:00??E04-NetMeetingExample\NetMeetingExample\bin\Debug\NetMeetingExample.vshost.exe.manifest
?????文件??????13824??2008-12-07?10:39??E04-NetMeetingExample\NetMeetingExample\bin\網(wǎng)絡會議\NetMeetingExample.exe
?????文件??????36352??2008-12-07?10:39??E04-NetMeetingExample\NetMeetingExample\bin\網(wǎng)絡會議\NetMeetingExample.pdb
?????文件??????14328??2008-12-07?10:38??E04-NetMeetingExample\NetMeetingExample\bin\網(wǎng)絡會議\NetMeetingExample.vshost.exe
?????文件????????490??2007-07-21?01:33??E04-NetMeetingExample\NetMeetingExample\bin\網(wǎng)絡會議\NetMeetingExample.vshost.exe.manifest
?????文件???????8268??2009-07-17?16:38??E04-NetMeetingExample\NetMeetingExample\FormMeeting.cs
?????文件???????7600??2006-02-05?02:53??E04-NetMeetingExample\NetMeetingExample\FormMeeting.Designer.cs
?????文件???????5814??2006-02-05?02:53??E04-NetMeetingExample\NetMeetingExample\FormMeeting.resx
?????文件???????3579??2018-06-21?09:00??E04-NetMeetingExample\NetMeetingExample\NetMeetingExample.csproj
?????文件???????6200??2018-06-21?09:00??E04-NetMeetingExample\NetMeetingExample\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache
?????文件???????5422??2018-06-21?09:01??E04-NetMeetingExample\NetMeetingExample\obj\Debug\NetMeetingExample.csproj.FileListAbsolute.txt
?????文件????????853??2009-03-21?00:29??E04-NetMeetingExample\NetMeetingExample\obj\Debug\NetMeetingExample.csproj.GenerateResource.Cache
?????文件???????1341??2018-06-21?09:00??E04-NetMeetingExample\NetMeetingExample\obj\Debug\NetMeetingExample.csprojResolveAssemblyReference.cache
?????文件??????14336??2018-06-21?09:00??E04-NetMeetingExample\NetMeetingExample\obj\Debug\NetMeetingExample.exe
?????文件????????180??2018-06-21?09:00??E04-NetMeetingExample\NetMeetingExample\obj\Debug\NetMeetingExample.FormMeeting.resources
............此處省略30個文件信息
評論
共有 條評論