基本信息
源码名称:websocket聊天室
源码大小:7.49M
文件格式:.rar
开发语言:C#
更新时间:2022-06-21
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍
websocket聊天室

.
├── 客户端
│   ├── Delphi
│   │   ├── Project1.cfg
│   │   ├── Project1.dof
│   │   ├── Project1.dpr
│   │   ├── Project1.exe
│   │   ├── Project1.res
│   │   ├── Unit1.dcu
│   │   ├── Unit1.dfm
│   │   ├── Unit1.pas
│   │   ├── Unit1.~dfm
│   │   ├── Unit1.~pas
│   │   └── socket.js
│   ├── H5
│   │   └── websocket.html
│   ├── WindowsFormsWebsocketClient
│   │   ├── WindowsFormsWebsocketClient
│   │   │   ├── App.config
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.resx
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── WindowsFormsWebsocketClient.csproj
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │       ├── SuperSocket.ClientEngine.dll
│   │   │   │       ├── WebSocket4Net.dll
│   │   │   │       ├── WindowsFormsWebsocketClient.exe
│   │   │   │       ├── WindowsFormsWebsocketClient.exe.config
│   │   │   │       ├── WindowsFormsWebsocketClient.pdb
│   │   │   │       ├── WindowsFormsWebsocketClient.vshost.exe
│   │   │   │       ├── WindowsFormsWebsocketClient.vshost.exe.config
│   │   │   │       └── WindowsFormsWebsocketClient.vshost.exe.manifest
│   │   │   ├── obj
│   │   │   │   └── Debug
│   │   │   │       ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │       ├── TempPE
│   │   │   │       ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│   │   │   │       ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│   │   │   │       ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│   │   │   │       ├── WindowsFormsWebsocketClient.Form1.resources
│   │   │   │       ├── WindowsFormsWebsocketClient.Properties.Resources.resources
│   │   │   │       ├── WindowsFormsWebsocketClient.csproj.FileListAbsolute.txt
│   │   │   │       ├── WindowsFormsWebsocketClient.csproj.GenerateResource.Cache
│   │   │   │       ├── WindowsFormsWebsocketClient.csprojResolveAssemblyReference.cache
│   │   │   │       ├── WindowsFormsWebsocketClient.exe
│   │   │   │       └── WindowsFormsWebsocketClient.pdb
│   │   │   └── packages.config
│   │   ├── WindowsFormsWebsocketClient.sln
│   │   └── packages
│   │       ├── SuperSocket.ClientEngine.Core.0.10.0
│   │       │   ├── SuperSocket.ClientEngine.Core.0.10.0.nupkg
│   │       │   └── lib
│   │       │       ├── net20
│   │       │       │   └── SuperSocket.ClientEngine.dll
│   │       │       ├── net35-client
│   │       │       │   └── SuperSocket.ClientEngine.dll
│   │       │       ├── net40-client
│   │       │       │   └── SuperSocket.ClientEngine.dll
│   │       │       ├── net45
│   │       │       │   └── SuperSocket.ClientEngine.dll
│   │       │       ├── netstandard1.3
│   │       │       │   └── SuperSocket.ClientEngine.dll
│   │       │       └── sl50
│   │       │           └── SuperSocket.ClientEngine.dll
│   │       └── WebSocket4Net.0.15.2
│   │           ├── WebSocket4Net.0.15.2.nupkg
│   │           └── lib
│   │               ├── net20
│   │               │   └── WebSocket4Net.dll
│   │               ├── net35
│   │               │   └── WebSocket4Net.dll
│   │               ├── net40
│   │               │   └── WebSocket4Net.dll
│   │               ├── net45
│   │               │   └── WebSocket4Net.dll
│   │               └── netstandard1.3
│   │                   └── WebSocket4Net.dll
│   └── py
│       ├── ui2py.bat
│       ├── websocket.ui
│       └── websocket1.py
├── 服务端
│   └── WindowsFormsWebsocketServer
│       ├── WindowsFormsWebsocketServer
│       │   ├── App.config
│       │   ├── Form1.Designer.cs
│       │   ├── Form1.cs
│       │   ├── Form1.resx
│       │   ├── Program.cs
│       │   ├── Properties
│       │   │   ├── AssemblyInfo.cs
│       │   │   ├── Resources.Designer.cs
│       │   │   ├── Resources.resx
│       │   │   ├── Settings.Designer.cs
│       │   │   └── Settings.settings
│       │   ├── WindowsFormsWebsocketServer.csproj
│       │   ├── bin
│       │   │   └── Debug
│       │   │       ├── Newtonsoft.Json.dll
│       │   │       ├── Newtonsoft.Json.xml
│       │   │       ├── SuperSocket.Common.dll
│       │   │       ├── SuperSocket.Facility.dll
│       │   │       ├── SuperSocket.SocketBase.dll
│       │   │       ├── SuperSocket.SocketEngine.dll
│       │   │       ├── SuperWebSocket.dll
│       │   │       ├── WindowsFormsWebsocketServer.exe
│       │   │       ├── WindowsFormsWebsocketServer.exe.config
│       │   │       ├── WindowsFormsWebsocketServer.pdb
│       │   │       ├── WindowsFormsWebsocketServer.vshost.exe
│       │   │       ├── WindowsFormsWebsocketServer.vshost.exe.config
│       │   │       ├── WindowsFormsWebsocketServer.vshost.exe.manifest
│       │   │       ├── log4net.dll
│       │   │       └── log4net.xml
│       │   ├── obj
│       │   │   └── Debug
│       │   │       ├── DesignTimeResolveAssemblyReferences.cache
│       │   │       ├── DesignTimeResolveAssemblyReferencesInput.cache
│       │   │       ├── TempPE
│       │   │       ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│       │   │       ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│       │   │       ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│       │   │       ├── WindowsFormsWebsocketServer.Form1.resources
│       │   │       ├── WindowsFormsWebsocketServer.Properties.Resources.resources
│       │   │       ├── WindowsFormsWebsocketServer.csproj.FileListAbsolute.txt
│       │   │       ├── WindowsFormsWebsocketServer.csproj.GenerateResource.Cache
│       │   │       ├── WindowsFormsWebsocketServer.csprojResolveAssemblyReference.cache
│       │   │       ├── WindowsFormsWebsocketServer.exe
│       │   │       └── WindowsFormsWebsocketServer.pdb
│       │   └── packages.config
│       ├── WindowsFormsWebsocketServer.sln
│       └── packages
│           ├── Newtonsoft.Json.6.0.2
│           │   ├── Newtonsoft.Json.6.0.2.nupkg
│           │   ├── lib
│           │   │   ├── net20
│           │   │   │   ├── Newtonsoft.Json.dll
│           │   │   │   └── Newtonsoft.Json.xml
│           │   │   ├── net35
│           │   │   │   ├── Newtonsoft.Json.dll
│           │   │   │   └── Newtonsoft.Json.xml
│           │   │   ├── net40
│           │   │   │   ├── Newtonsoft.Json.dll
│           │   │   │   └── Newtonsoft.Json.xml
│           │   │   ├── net45
│           │   │   │   ├── Newtonsoft.Json.dll
│           │   │   │   └── Newtonsoft.Json.xml
│           │   │   ├── netcore45
│           │   │   │   ├── Newtonsoft.Json.dll
│           │   │   │   └── Newtonsoft.Json.xml
│           │   │   ├── portable-net40 sl5 wp80 win8 monotouch monoandroid
│           │   │   │   ├── Newtonsoft.Json.dll
│           │   │   │   └── Newtonsoft.Json.xml
│           │   │   └── portable-net45 wp80 win8 wpa81
│           │   │       ├── Newtonsoft.Json.dll
│           │   │       └── Newtonsoft.Json.xml
│           │   └── tools
│           │       └── install.ps1
│           ├── SuperWebSocketNETServer.0.8
│           │   ├── SuperWebSocketNETServer.0.8.nupkg
│           │   └── lib
│           │       ├── net35
│           │       │   ├── SuperSocket.Common.dll
│           │       │   ├── SuperSocket.Facility.dll
│           │       │   ├── SuperSocket.SocketBase.dll
│           │       │   ├── SuperSocket.SocketEngine.dll
│           │       │   └── SuperWebSocket.dll
│           │       ├── net40
│           │       │   ├── SuperSocket.Common.dll
│           │       │   ├── SuperSocket.Facility.dll
│           │       │   ├── SuperSocket.SocketBase.dll
│           │       │   ├── SuperSocket.SocketEngine.dll
│           │       │   └── SuperWebSocket.dll
│           │       └── net45
│           │           ├── SuperSocket.Common.dll
│           │           ├── SuperSocket.Facility.dll
│           │           ├── SuperSocket.SocketBase.dll
│           │           ├── SuperSocket.SocketEngine.dll
│           │           └── SuperWebSocket.dll
│           └── log4net.2.0.3
│               ├── lib
│               │   ├── net10-full
│               │   │   ├── log4net.dll
│               │   │   └── log4net.xml
│               │   ├── net11-full
│               │   │   ├── log4net.dll
│               │   │   └── log4net.xml
│               │   ├── net20-full
│               │   │   ├── log4net.dll
│               │   │   └── log4net.xml
│               │   ├── net35-client
│               │   │   ├── log4net.dll
│               │   │   └── log4net.xml
│               │   ├── net35-full
│               │   │   ├── log4net.dll
│               │   │   └── log4net.xml
│               │   ├── net40-client
│               │   │   ├── log4net.dll
│               │   │   └── log4net.xml
│               │   └── net40-full
│               │       ├── log4net.dll
│               │       └── log4net.xml
│               └── log4net.2.0.3.nupkg
└── 好例子网_websocket聊天室.rar

62 directories, 148 files