嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):78630559
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
C#:TCP异步聊天室服务端和客户端源码
.
├── TCP 异步
│ ├── 客户端
│ │ ├── ChattingClient
│ │ │ ├── AsyncClient.Designer.cs
│ │ │ ├── AsyncClient.cs
│ │ │ ├── AsyncClient.resx
│ │ │ ├── AsyncTcpClient.cs
│ │ │ ├── ChattingClient.csproj
│ │ │ ├── ChattingClient.csproj.user
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── TcpClientConnectedEventArgs.cs
│ │ │ ├── TcpClientDisconnectedEventArgs.cs
│ │ │ ├── TcpClientState.cs
│ │ │ ├── TcpDatagramReceivedEventArgs.cs
│ │ │ ├── TcpServerConnectedEventArgs.cs
│ │ │ ├── TcpServerDisconnectedEventArgs.cs
│ │ │ ├── TcpServerExceptionOccurredEventArgs.cs
│ │ │ ├── bin
│ │ │ │ ├── Debug
│ │ │ │ │ ├── ChattingClient.exe
│ │ │ │ │ ├── ChattingClient.pdb
│ │ │ │ │ ├── ChattingClient.vshost.exe
│ │ │ │ │ ├── ChattingClient.vshost.exe.manifest
│ │ │ │ │ ├── Common.dll
│ │ │ │ │ └── Common.pdb
│ │ │ │ └── Release
│ │ │ └── obj
│ │ │ └── Debug
│ │ │ ├── ChattingClient.AsyncClient.resources
│ │ │ ├── ChattingClient.Properties.Resources.resources
│ │ │ ├── ChattingClient.csproj.CopyComplete
│ │ │ ├── ChattingClient.csproj.CoreCompileInputs.cache
│ │ │ ├── ChattingClient.csproj.FileListAbsolute.txt
│ │ │ ├── ChattingClient.csproj.GenerateResource.cache
│ │ │ ├── ChattingClient.csprojAssemblyReference.cache
│ │ │ ├── ChattingClient.exe
│ │ │ ├── ChattingClient.pdb
│ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── GenerateResource-ResGen.read.1.tlog
│ │ │ ├── GenerateResource-ResGen.write.1.tlog
│ │ │ ├── Refactor
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ └── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ ├── ChattingServer
│ │ │ ├── AsyncEventArgs.cs
│ │ │ ├── AsyncServer.Designer.cs
│ │ │ ├── AsyncServer.cs
│ │ │ ├── AsyncServer.resx
│ │ │ ├── AsyncTCPServer.cs
│ │ │ ├── ChattingServer.csproj
│ │ │ ├── ChattingServer.csproj.user
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── TCPClientState.cs
│ │ │ ├── UserInformation.cs
│ │ │ ├── app.config
│ │ │ ├── bin
│ │ │ │ ├── Debug
│ │ │ │ │ ├── ChattingServer.exe
│ │ │ │ │ ├── ChattingServer.exe.config
│ │ │ │ │ ├── ChattingServer.pdb
│ │ │ │ │ ├── ChattingServer.vshost.exe
│ │ │ │ │ ├── ChattingServer.vshost.exe.config
│ │ │ │ │ ├── ChattingServer.vshost.exe.manifest
│ │ │ │ │ ├── Common.dll
│ │ │ │ │ └── Common.pdb
│ │ │ │ └── Release
│ │ │ └── obj
│ │ │ └── Debug
│ │ │ ├── ChattingServer.AsyncServer.resources
│ │ │ ├── ChattingServer.Properties.Resources.resources
│ │ │ ├── ChattingServer.csproj.CopyComplete
│ │ │ ├── ChattingServer.csproj.CoreCompileInputs.cache
│ │ │ ├── ChattingServer.csproj.FileListAbsolute.txt
│ │ │ ├── ChattingServer.csproj.GenerateResource.cache
│ │ │ ├── ChattingServer.csprojAssemblyReference.cache
│ │ │ ├── ChattingServer.exe
│ │ │ ├── ChattingServer.pdb
│ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── GenerateResource-ResGen.read.1.tlog
│ │ │ ├── GenerateResource-ResGen.write.1.tlog
│ │ │ ├── GenerateResource.read.1.tlog
│ │ │ ├── GenerateResource.write.1.tlog
│ │ │ ├── Refactor
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ └── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ ├── ChattingSolution.sln
│ │ ├── ChattingSolution.suo
│ │ ├── Common
│ │ │ ├── Common.csproj
│ │ │ ├── Common.csproj.user
│ │ │ ├── CommonUnity.cs
│ │ │ ├── MessageEntity.cs
│ │ │ ├── ObjectInversion.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── SolidFlag.cs
│ │ │ ├── bin
│ │ │ │ ├── Debug
│ │ │ │ │ ├── Common.dll
│ │ │ │ │ └── Common.pdb
│ │ │ │ └── Release
│ │ │ └── obj
│ │ │ └── Debug
│ │ │ ├── Common.csproj.CoreCompileInputs.cache
│ │ │ ├── Common.csproj.FileListAbsolute.txt
│ │ │ ├── Common.dll
│ │ │ ├── Common.pdb
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ └── TempPE
│ │ └── Packages.dgml
│ └── 服务端
│ ├── ChattingClient
│ │ ├── AsyncClient.Designer.cs
│ │ ├── AsyncClient.cs
│ │ ├── AsyncClient.resx
│ │ ├── AsyncTcpClient.cs
│ │ ├── ChattingClient.csproj
│ │ ├── ChattingClient.csproj.user
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── TcpClientConnectedEventArgs.cs
│ │ ├── TcpClientDisconnectedEventArgs.cs
│ │ ├── TcpClientState.cs
│ │ ├── TcpDatagramReceivedEventArgs.cs
│ │ ├── TcpServerConnectedEventArgs.cs
│ │ ├── TcpServerDisconnectedEventArgs.cs
│ │ ├── TcpServerExceptionOccurredEventArgs.cs
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ │ ├── ChattingClient.exe
│ │ │ │ ├── ChattingClient.pdb
│ │ │ │ ├── ChattingClient.vshost.exe
│ │ │ │ ├── ChattingClient.vshost.exe.manifest
│ │ │ │ ├── Common.dll
│ │ │ │ └── Common.pdb
│ │ │ └── Release
│ │ └── obj
│ │ └── Debug
│ │ ├── ChattingClient.AsyncClient.resources
│ │ ├── ChattingClient.Properties.Resources.resources
│ │ ├── ChattingClient.csproj.CopyComplete
│ │ ├── ChattingClient.csproj.CoreCompileInputs.cache
│ │ ├── ChattingClient.csproj.FileListAbsolute.txt
│ │ ├── ChattingClient.csproj.GenerateResource.cache
│ │ ├── ChattingClient.csprojAssemblyReference.cache
│ │ ├── ChattingClient.exe
│ │ ├── ChattingClient.pdb
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── GenerateResource-ResGen.read.1.tlog
│ │ ├── GenerateResource-ResGen.write.1.tlog
│ │ ├── Refactor
│ │ ├── ResolveAssemblyReference.cache
│ │ └── TempPE
│ │ └── Properties.Resources.Designer.cs.dll
│ ├── ChattingServer
│ │ ├── AsyncEventArgs.cs
│ │ ├── AsyncServer.Designer.cs
│ │ ├── AsyncServer.cs
│ │ ├── AsyncServer.resx
│ │ ├── AsyncTCPServer.cs
│ │ ├── ChattingServer.csproj
│ │ ├── ChattingServer.csproj.user
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── TCPClientState.cs
│ │ ├── UserInformation.cs
│ │ ├── app.config
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ │ ├── ChattingServer.exe
│ │ │ │ ├── ChattingServer.exe.config
│ │ │ │ ├── ChattingServer.pdb
│ │ │ │ ├── ChattingServer.vshost.exe
│ │ │ │ ├── ChattingServer.vshost.exe.config
│ │ │ │ ├── ChattingServer.vshost.exe.manifest
│ │ │ │ ├── Common.dll
│ │ │ │ └── Common.pdb
│ │ │ └── Release
│ │ └── obj
│ │ └── Debug
│ │ ├── ChattingServer.AsyncServer.resources
│ │ ├── ChattingServer.Properties.Resources.resources
│ │ ├── ChattingServer.csproj.CopyComplete
│ │ ├── ChattingServer.csproj.CoreCompileInputs.cache
│ │ ├── ChattingServer.csproj.FileListAbsolute.txt
│ │ ├── ChattingServer.csproj.GenerateResource.cache
│ │ ├── ChattingServer.csprojAssemblyReference.cache
│ │ ├── ChattingServer.csprojResolveAssemblyReference.cache
│ │ ├── ChattingServer.exe
│ │ ├── ChattingServer.pdb
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── GenerateResource-ResGen.read.1.tlog
│ │ ├── GenerateResource-ResGen.write.1.tlog
│ │ ├── GenerateResource.read.1.tlog
│ │ ├── GenerateResource.write.1.tlog
│ │ ├── Refactor
│ │ ├── ResolveAssemblyReference.cache
│ │ └── TempPE
│ │ └── Properties.Resources.Designer.cs.dll
│ ├── ChattingSolution.sln
│ ├── ChattingSolution.suo
│ ├── Common
│ │ ├── Common.csproj
│ │ ├── Common.csproj.user
│ │ ├── CommonUnity.cs
│ │ ├── MessageEntity.cs
│ │ ├── ObjectInversion.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── SolidFlag.cs
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ │ ├── Common.dll
│ │ │ │ └── Common.pdb
│ │ │ └── Release
│ │ └── obj
│ │ └── Debug
│ │ ├── Common.csproj.CoreCompileInputs.cache
│ │ ├── Common.csproj.FileListAbsolute.txt
│ │ ├── Common.dll
│ │ ├── Common.pdb
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ └── TempPE
│ └── Packages.dgml
└── 好例子网_TCP 异步.zip
55 directories, 198 files