資源簡介
實現Sockets通信,客戶端與服務端進行交互,如下圖 閃屏/群發消息/單發消息/發送文件 等功能 均已實現
代碼片段和文件信息
using?System;
using?System.Collections.Generic;
using?System.Threading;
using?System.Net;
using?System.Net.Sockets;
using?System.Text;
using?System.IO;
namespace?Server
{
????///?
????///?與客戶端的?連接通信類(包含了一個?與客戶端?通信的?套接字,和線程)
????///?
????public?class?ConnectionClient
????{
????????Socket?sokMsg;
????????DGShowMsg?dgShowMsg;//負責?向主窗體文本框顯示消息的方法委托
????????DGShowMsg?dgRemoveConnection;//?負責?從主窗體?中移除?當前連接
????????Thread?threadMsg;
????????#region?構造函數
????????///?
????????///?
????????///?
????????///?通信套接字
????????///?向主窗體文本框顯示消息的方法委托
????????public?ConnectionClient(Socket?sokMsg?DGShowMsg?dgShowMsg?DGShowMsg?dgRemoveConnection)
????????{
????????????this.sokMsg?=?s
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件??????15360??2017-12-25?10:53??Sockets\Client\bin\Debug\Client.exe
?????文件??????38400??2017-12-25?10:53??Sockets\Client\bin\Debug\Client.pdb
?????文件??????11600??2017-12-25?10:53??Sockets\Client\bin\Debug\Client.vshost.exe
?????文件????????490??2015-11-13?10:24??Sockets\Client\bin\Debug\Client.vshost.exe.manifest
?????文件???????4766??2011-09-06?10:26??Sockets\Client\ConnectionClient.cs
?????文件????????171??2011-09-06?10:26??Sockets\Client\DGShowMsg.cs
?????文件???????7062??2017-05-17?13:58??Sockets\Client\Form1.cs
?????文件??????11082??2017-05-17?11:01??Sockets\Client\Form1.Designer.cs
?????文件???????5817??2017-05-17?11:01??Sockets\Client\Form1.resx
?????文件??????15360??2017-12-25?10:53??Sockets\Client\obj\x86\Debug\Client.exe
?????文件??????38400??2017-12-25?10:53??Sockets\Client\obj\x86\Debug\Client.pdb
?????文件???????5420??2017-05-27?09:54??Sockets\Client\obj\x86\Debug\DesignTimeResolveAssemblyReferences.cache
?????文件???????6296??2017-12-25?10:53??Sockets\Client\obj\x86\Debug\DesignTimeResolveAssemblyReferencesInput.cache
?????文件????????184??2011-09-06?10:30??Sockets\Client\obj\x86\Debug\GenerateResource.read.1.tlog
?????文件????????744??2011-09-06?10:30??Sockets\Client\obj\x86\Debug\GenerateResource.write.1.tlog
?????文件???????1815??2017-12-25?10:53??Sockets\Client\obj\x86\Debug\Server.csproj.FileListAbsolute.txt
?????文件????????975??2017-05-17?11:02??Sockets\Client\obj\x86\Debug\Server.csproj.GenerateResource.Cache
?????文件???????9214??2017-08-29?08:32??Sockets\Client\obj\x86\Debug\Server.csprojResolveAssemblyReference.cache
?????文件????????180??2017-05-17?11:02??Sockets\Client\obj\x86\Debug\Server.Form1.resources
?????文件????????180??2017-05-17?10:10??Sockets\Client\obj\x86\Debug\Server.Properties.Resources.resources
?????文件???????4608??2011-09-06?10:30??Sockets\Client\obj\x86\Debug\TempPE\Properties.Resources.Designer.cs.dll
?????文件????????487??2011-09-06?10:26??Sockets\Client\Program.cs
?????文件???????1344??2011-09-06?10:19??Sockets\Client\Properties\AssemblyInfo.cs
?????文件???????2850??2011-09-06?10:26??Sockets\Client\Properties\Resources.Designer.cs
?????文件???????5612??2011-09-06?10:19??Sockets\Client\Properties\Resources.resx
?????文件???????1104??2011-09-06?10:26??Sockets\Client\Properties\Settings.Designer.cs
?????文件????????249??2011-09-06?10:19??Sockets\Client\Properties\Settings.settings
?????文件???????3795??2011-09-06?10:30??Sockets\Client\Server.csproj
?????文件??????11776??2017-12-25?10:53??Sockets\Servers\bin\Debug\Servers.exe
?????文件??????34304??2017-12-25?10:53??Sockets\Servers\bin\Debug\Servers.pdb
............此處省略48個文件信息
評論
共有 條評論