在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例C#语言基础 → c# SuperWebSocket 实例

c# SuperWebSocket 实例

C#语言基础

下载此实例
  • 开发语言:C#
  • 实例大小:4.40M
  • 下载次数:4
  • 浏览次数:39
  • 发布时间:2023-11-27
  • 实例类别:C#语言基础
  • 发 布 人:chenxiaolan
  • 文件格式:.rar
  • 所需积分:2
 相关标签: SuperWebSocket websocket Socket web sOC

实例介绍

【实例简介】C#基于SuperWebSocket实现广播,群聊,在Appsession类中增加了RoomID,UserName等信息,方便管理Session对象。

【实例截图】

from clipboard

from clipboard

from clipboard

【核心代码】

.
├── SuperWebSocket(群聊单聊)
│   ├── App.config
│   ├── Backup
│   │   ├── Samples
│   │   │   └── SuperWebSocketWeb
│   │   │       ├── ClientBin
│   │   │       │   └── WebSocket4Net.JsBridge.xap
│   │   │       ├── Config
│   │   │       │   ├── log4net.config
│   │   │       │   └── log4net.unix.config
│   │   │       ├── Default.aspx
│   │   │       ├── Default.aspx.cs
│   │   │       ├── Default.aspx.designer.cs
│   │   │       ├── Global.asax
│   │   │       ├── Global.asax.cs
│   │   │       ├── Images
│   │   │       │   └── white-top-bottom.gif
│   │   │       ├── LiveChat.aspx
│   │   │       ├── LiveChat.aspx.cs
│   │   │       ├── LiveChat.aspx.designer.cs
│   │   │       ├── LiveChatWithBridge.aspx
│   │   │       ├── LiveChatWithBridge.aspx.cs
│   │   │       ├── LiveChatWithBridge.aspx.designer.cs
│   │   │       ├── Properties
│   │   │       │   └── AssemblyInfo.cs
│   │   │       ├── Scripts
│   │   │       │   ├── Silverlight.js
│   │   │       │   ├── WebSocketEx.js
│   │   │       │   └── jquery.js
│   │   │       ├── SuperWebSocketWeb.csproj
│   │   │       ├── Web.Debug.config
│   │   │       ├── Web.Release.config
│   │   │       ├── Web.config
│   │   │       ├── clientaccesspolicy.xml
│   │   │       ├── localhost.pfx
│   │   │       └── supersocket.pfx
│   │   └── SuperWebSocket.sln
│   ├── Backup1
│   │   ├── Samples
│   │   │   └── SuperWebSocketWebNet35
│   │   │       ├── Config
│   │   │       │   ├── log4net.config
│   │   │       │   └── log4net.unix.config
│   │   │       ├── Default.aspx
│   │   │       ├── Default.aspx.cs
│   │   │       ├── Default.aspx.designer.cs
│   │   │       ├── Global.asax
│   │   │       ├── Global.asax.cs
│   │   │       ├── Images
│   │   │       │   └── white-top-bottom.gif
│   │   │       ├── LiveChat.aspx
│   │   │       ├── LiveChat.aspx.cs
│   │   │       ├── LiveChat.aspx.designer.cs
│   │   │       ├── Properties
│   │   │       │   └── AssemblyInfo.cs
│   │   │       ├── Scripts
│   │   │       │   └── jquery.js
│   │   │       ├── SuperWebSocketWebNet35.csproj
│   │   │       ├── Web.Debug.config
│   │   │       ├── Web.Release.config
│   │   │       ├── Web.config
│   │   │       ├── localhost.pfx
│   │   │       └── supersocket.pfx
│   │   └── SuperWebSocket.NET35.sln
│   ├── Build.bat
│   ├── Cloud
│   │   └── WindowsAzure
│   │       ├── AzureHost
│   │       │   ├── AzureHost.ccproj
│   │       │   ├── ServiceConfiguration.Cloud.cscfg
│   │       │   ├── ServiceConfiguration.Local.cscfg
│   │       │   ├── ServiceDefinition.build.csdef
│   │       │   └── ServiceDefinition.csdef
│   │       ├── SuperWebSocketWorkerRole
│   │       │   ├── Config
│   │       │   │   └── log4net.config
│   │       │   ├── Properties
│   │       │   │   └── AssemblyInfo.cs
│   │       │   ├── SuperWebSocketWorkerRole.csproj
│   │       │   ├── WorkerRole.cs
│   │       │   └── app.config
│   │       └── WindowsAzure.sln
│   ├── GlobalAssemblyInfo.cs
│   ├── LICENSE.TXT
│   ├── PerformanceTest
│   │   ├── PerformanceTest.sln
│   │   ├── TestClient
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   ├── TestClient.csproj
│   │   │   └── app.config
│   │   ├── TestServer
│   │   │   ├── Config
│   │   │   ├── ECHO.cs
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   ├── SuperSocket.SocketService.exe.config
│   │   │   ├── TestAppServer.cs
│   │   │   ├── TestServer.csproj
│   │   │   └── TestSession.cs
│   │   └── TestSingleClient
│   │       ├── Program.cs
│   │       ├── Properties
│   │       │   └── AssemblyInfo.cs
│   │       └── TestSingleClient.csproj
│   ├── README.TXT
│   ├── Reference
│   │   ├── Json.NET
│   │   │   ├── Net35
│   │   │   │   └── Newtonsoft.Json.dll
│   │   │   └── Net40
│   │   │       └── Newtonsoft.Json.dll
│   │   ├── SuperSocket
│   │   │   ├── Net35
│   │   │   │   ├── InstallService.bat
│   │   │   │   ├── RunServer.bat
│   │   │   │   ├── SuperSocket.Common.dll
│   │   │   │   ├── SuperSocket.Facility.dll
│   │   │   │   ├── SuperSocket.Management.Server.dll
│   │   │   │   ├── SuperSocket.Management.Shared.dll
│   │   │   │   ├── SuperSocket.SocketBase.dll
│   │   │   │   ├── SuperSocket.SocketEngine.dll
│   │   │   │   ├── SuperSocket.SocketService.exe
│   │   │   │   ├── System.Threading.dll
│   │   │   │   └── UninstallService.bat
│   │   │   └── Net40
│   │   │       ├── InstallService.bat
│   │   │       ├── RunServer.bat
│   │   │       ├── SuperSocket.Common.dll
│   │   │       ├── SuperSocket.Facility.dll
│   │   │       ├── SuperSocket.Management.Server.dll
│   │   │       ├── SuperSocket.Management.Shared.dll
│   │   │       ├── SuperSocket.SocketBase.dll
│   │   │       ├── SuperSocket.SocketEngine.dll
│   │   │       ├── SuperSocket.SocketService.exe
│   │   │       └── UninstallService.bat
│   │   ├── WebSocket4Net
│   │   │   ├── Net35
│   │   │   │   └── WebSocket4Net.dll
│   │   │   └── Net40
│   │   │       └── WebSocket4Net.dll
│   │   ├── log4net.dll
│   │   └── nunit.framework.dll
│   ├── Samples
│   │   ├── CommandAssembly
│   │   │   ├── CommandAssembly.Net35.csproj
│   │   │   ├── CommandAssembly.csproj
│   │   │   ├── ECHO.cs
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   ├── QUIT.cs
│   │   │   ├── SuperWebSocket.Service.exe.config
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │       ├── Newtonsoft.Json.dll
│   │   │   │       ├── SuperSocket.Common.dll
│   │   │   │       ├── SuperSocket.SocketBase.dll
│   │   │   │       ├── SuperWebSocket.Samples.CommandAssembly.dll
│   │   │   │       ├── SuperWebSocket.Samples.CommandAssembly.pdb
│   │   │   │       ├── SuperWebSocket.Service.exe.config
│   │   │   │       ├── SuperWebSocket.dll
│   │   │   │       ├── SuperWebSocket.pdb
│   │   │   │       └── System.Threading.dll
│   │   │   ├── obj
│   │   │   │   └── Debug
│   │   │   │       ├── CommandAssembly.Net35.csproj.FileListAbsolute.txt
│   │   │   │       ├── CommandAssembly.Net35.csprojResolveAssemblyReference.cache
│   │   │   │       ├── CommandAssembly.csproj.FileListAbsolute.txt
│   │   │   │       ├── CommandAssembly.csprojResolveAssemblyReference.cache
│   │   │   │       ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │       ├── SuperWebSocket.Samples.CommandAssembly.dll
│   │   │   │       ├── SuperWebSocket.Samples.CommandAssembly.pdb
│   │   │   │       └── TempPE
│   │   │   └── readme.txt
│   │   ├── CustomSession
│   │   │   ├── CRMAppServer.cs
│   │   │   ├── CRMSession.cs
│   │   │   ├── Command
│   │   │   │   └── BRCT.cs
│   │   │   ├── CustomSession.Net35.csproj
│   │   │   ├── CustomSession.csproj
│   │   │   ├── JsonObject
│   │   │   │   └── BroadcastMessage.cs
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   ├── SuperWebSocket.Service.exe.config
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │       ├── Newtonsoft.Json.dll
│   │   │   │       ├── SuperSocket.Common.dll
│   │   │   │       ├── SuperSocket.SocketBase.dll
│   │   │   │       ├── SuperWebSocket.Samples.CustomSession.dll
│   │   │   │       ├── SuperWebSocket.Samples.CustomSession.pdb
│   │   │   │       ├── SuperWebSocket.Service.exe.config
│   │   │   │       ├── SuperWebSocket.dll
│   │   │   │       ├── SuperWebSocket.pdb
│   │   │   │       └── System.Threading.dll
│   │   │   ├── obj
│   │   │   │   └── Debug
│   │   │   │       ├── CustomSession.Net35.csproj.FileListAbsolute.txt
│   │   │   │       ├── CustomSession.Net35.csprojResolveAssemblyReference.cache
│   │   │   │       ├── CustomSession.csproj.FileListAbsolute.txt
│   │   │   │       ├── CustomSession.csprojResolveAssemblyReference.cache
│   │   │   │       ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │       ├── SuperWebSocket.Samples.CustomSession.dll
│   │   │   │       ├── SuperWebSocket.Samples.CustomSession.pdb
│   │   │   │       └── TempPE
│   │   │   └── readme.txt
│   │   ├── JsonCommandAssembly
│   │   │   ├── Command
│   │   │   │   ├── ADD.cs
│   │   │   │   ├── ADDX.cs
│   │   │   │   ├── CHAT.cs
│   │   │   │   └── ECHO.cs
│   │   │   ├── JsonCommandAssembly.Net35.csproj
│   │   │   ├── JsonCommandAssembly.csproj
│   │   │   ├── JsonObject
│   │   │   │   ├── AddParameter.cs
│   │   │   │   ├── AddResult.cs
│   │   │   │   └── ChatMessage.cs
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   ├── SuperWebSocket.Service.exe.config
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │       ├── Newtonsoft.Json.dll
│   │   │   │       ├── SuperSocket.Common.dll
│   │   │   │       ├── SuperSocket.SocketBase.dll
│   │   │   │       ├── SuperWebSocket.Samples.JsonCommandAssembly.dll
│   │   │   │       ├── SuperWebSocket.Samples.JsonCommandAssembly.pdb
│   │   │   │       ├── SuperWebSocket.Service.exe.config
│   │   │   │       ├── SuperWebSocket.dll
│   │   │   │       ├── SuperWebSocket.pdb
│   │   │   │       └── System.Threading.dll
│   │   │   ├── obj
│   │   │   │   └── Debug
│   │   │   │       ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │       ├── JsonCommandAssembly.Net35.csproj.FileListAbsolute.txt
│   │   │   │       ├── JsonCommandAssembly.Net35.csprojResolveAssemblyReference.cache
│   │   │   │       ├── JsonCommandAssembly.csproj.FileListAbsolute.txt
│   │   │   │       ├── JsonCommandAssembly.csprojResolveAssemblyReference.cache
│   │   │   │       ├── SuperWebSocket.Samples.JsonCommandAssembly.dll
│   │   │   │       ├── SuperWebSocket.Samples.JsonCommandAssembly.pdb
│   │   │   │       └── TempPE
│   │   │   └── readme.txt
│   │   ├── SuperWebSocketWeb
│   │   │   ├── 140db32d-7157-4469-bf68-4f9fa5fa633aSystem.Net.Trace.log
│   │   │   ├── 48f2df2e-4eab-40e9-899e-26a50b13ef72System.Net.Trace.log
│   │   │   ├── 4e562e34-ffdf-4506-b128-8def0da8c8b0System.Net.Trace.log
│   │   │   ├── App_Data
│   │   │   ├── ClientBin
│   │   │   │   └── WebSocket4Net.JsBridge.xap
│   │   │   ├── Config
│   │   │   │   ├── log4net.config
│   │   │   │   └── log4net.unix.config
│   │   │   ├── Default1021.aspx
│   │   │   ├── Default1021.aspx.cs
│   │   │   ├── Default1021.aspx.designer.cs
│   │   │   ├── Global.asax
│   │   │   ├── Global.asax.cs
│   │   │   ├── HanMei1021.aspx
│   │   │   ├── HanMei1021.aspx.cs
│   │   │   ├── HanMei1021.aspx.designer.cs
│   │   │   ├── Images
│   │   │   │   └── white-top-bottom.gif
│   │   │   ├── Jack1021.aspx
│   │   │   ├── Jack1021.aspx.cs
│   │   │   ├── Jack1021.aspx.designer.cs
│   │   │   ├── Jim1022.aspx
│   │   │   ├── Jim1022.aspx.cs
│   │   │   ├── Jim1022.aspx.designer.cs
│   │   │   ├── Join1022.aspx
│   │   │   ├── Join1022.aspx.cs
│   │   │   ├── Join1022.aspx.designer.cs
│   │   │   ├── LiveChat.aspx
│   │   │   ├── LiveChat.aspx.cs
│   │   │   ├── LiveChat.aspx.designer.cs
│   │   │   ├── LiveChatWithBridge.aspx
│   │   │   ├── LiveChatWithBridge.aspx.cs
│   │   │   ├── LiveChatWithBridge.aspx.designer.cs
│   │   │   ├── Logs
│   │   │   │   ├── debug.log
│   │   │   │   ├── debug.log20150415
│   │   │   │   ├── debug.log20150416
│   │   │   │   ├── debug.log20150417
│   │   │   │   ├── err.log
│   │   │   │   ├── err.log20150415
│   │   │   │   ├── err.log20150416
│   │   │   │   ├── err.log20150417
│   │   │   │   ├── info.log
│   │   │   │   ├── info.log20150415
│   │   │   │   ├── info.log20150416
│   │   │   │   ├── info.log20150417
│   │   │   │   ├── perf.log
│   │   │   │   ├── perf.log20150415
│   │   │   │   ├── perf.log20150416
│   │   │   │   └── perf.log20150417
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   ├── Scripts
│   │   │   │   ├── Silverlight.js
│   │   │   │   ├── WebSocketEx.js
│   │   │   │   └── jquery.js
│   │   │   ├── SuperWebSocketWeb.Mono.csproj
│   │   │   ├── SuperWebSocketWeb.csproj
│   │   │   ├── SuperWebSocketWeb.csproj.user
│   │   │   ├── System.Net.Trace.log
│   │   │   ├── Web.Debug.config
│   │   │   ├── Web.Release.config
│   │   │   ├── Web.config
│   │   │   ├── bin
│   │   │   │   ├── Newtonsoft.Json.dll
│   │   │   │   ├── SuperSocket.Common.dll
│   │   │   │   ├── SuperSocket.Facility.dll
│   │   │   │   ├── SuperSocket.SocketBase.dll
│   │   │   │   ├── SuperSocket.SocketEngine.dll
│   │   │   │   ├── SuperWebSocket.dll
│   │   │   │   ├── SuperWebSocket.pdb
│   │   │   │   ├── SuperWebSocketWeb.dll
│   │   │   │   ├── SuperWebSocketWeb.dll.config
│   │   │   │   ├── SuperWebSocketWeb.pdb
│   │   │   │   └── log4net.dll
│   │   │   ├── clientaccesspolicy.xml
│   │   │   ├── fb3027f7-f0b8-461d-82ae-1ce92885d554System.Net.Trace.log
│   │   │   ├── localhost.pfx
│   │   │   ├── obj
│   │   │   │   └── Debug
│   │   │   │       ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │       ├── SuperWebSocketWeb.csproj.FileListAbsolute.txt
│   │   │   │       ├── SuperWebSocketWeb.csprojResolveAssemblyReference.cache
│   │   │   │       ├── SuperWebSocketWeb.dll
│   │   │   │       ├── SuperWebSocketWeb.pdb
│   │   │   │       └── TempPE
│   │   │   └── supersocket.pfx
│   │   └── SuperWebSocketWebNet35
│   │       ├── App_Data
│   │       ├── Config
│   │       │   ├── log4net.config
│   │       │   └── log4net.unix.config
│   │       ├── Default.aspx
│   │       ├── Default.aspx.cs
│   │       ├── Default.aspx.designer.cs
│   │       ├── Global.asax
│   │       ├── Global.asax.cs
│   │       ├── Images
│   │       │   └── white-top-bottom.gif
│   │       ├── LiveChat.aspx
│   │       ├── LiveChat.aspx.cs
│   │       ├── LiveChat.aspx.designer.cs
│   │       ├── LiveChatTest.aspx
│   │       ├── LiveChatTest.aspx.cs
│   │       ├── LiveChatTest.aspx.designer.cs
│   │       ├── Logs
│   │       │   ├── debug.log
│   │       │   ├── debug.log20150413
│   │       │   ├── err.log
│   │       │   ├── err.log20150413
│   │       │   ├── info.log
│   │       │   ├── info.log20150413
│   │       │   ├── perf.log
│   │       │   └── perf.log20150413
│   │       ├── Properties
│   │       │   └── AssemblyInfo.cs
│   │       ├── Scripts
│   │       │   └── jquery.js
│   │       ├── SuperWebSocketWebNet35.csproj
│   │       ├── SuperWebSocketWebNet35.csproj.user
│   │       ├── Web.Debug.config
│   │       ├── Web.Release.config
│   │       ├── Web.config
│   │       ├── bin
│   │       │   ├── Newtonsoft.Json.dll
│   │       │   ├── SuperSocket.Common.dll
│   │       │   ├── SuperSocket.SocketBase.dll
│   │       │   ├── SuperSocket.SocketEngine.dll
│   │       │   ├── SuperWebSocket.dll
│   │       │   ├── SuperWebSocket.pdb
│   │       │   ├── SuperWebSocketWeb.dll
│   │       │   ├── SuperWebSocketWeb.dll.config
│   │       │   ├── SuperWebSocketWeb.pdb
│   │       │   ├── System.Threading.dll
│   │       │   └── log4net.dll
│   │       ├── localhost.pfx
│   │       ├── obj
│   │       │   └── Debug
│   │       │       ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │       │       ├── SuperWebSocketWeb.dll
│   │       │       ├── SuperWebSocketWeb.pdb
│   │       │       ├── SuperWebSocketWebNet35.csproj.FileListAbsolute.txt
│   │       │       ├── SuperWebSocketWebNet35.csprojResolveAssemblyReference.cache
│   │       │       └── TempPE
│   │       └── supersocket.pfx
│   ├── SuperWebSocket
│   │   ├── Command
│   │   │   ├── Binary.cs
│   │   │   ├── Close.cs
│   │   │   ├── Continuation.cs
│   │   │   ├── FragmentCommand.cs
│   │   │   ├── HandShake.cs
│   │   │   ├── Ping.cs
│   │   │   ├── Plain.cs
│   │   │   ├── Pong.cs
│   │   │   └── Text.cs
│   │   ├── Config
│   │   │   ├── CommandConfig.cs
│   │   │   ├── CommandConfigCollection.cs
│   │   │   ├── SubProtocolConfig.cs
│   │   │   └── SubProtocolConfigCollection.cs
│   │   ├── Extensions.cs
│   │   ├── JsonWebSocketSession.cs
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Protocol
│   │   │   ├── CloseStatusCodeHybi10.cs
│   │   │   ├── CloseStatusCodeRfc6455.cs
│   │   │   ├── DraftHybi00Processor.cs
│   │   │   ├── DraftHybi10Processor.cs
│   │   │   ├── FramePartReader
│   │   │   │   ├── DataFramePartReader.cs
│   │   │   │   ├── ExtendedLenghtReader.cs
│   │   │   │   ├── FixPartReader.cs
│   │   │   │   ├── IDataFramePartReader.cs
│   │   │   │   ├── MaskKeyReader.cs
│   │   │   │   └── PayloadDataReader.cs
│   │   │   ├── HandshakeRequest.cs
│   │   │   ├── ICloseStatusCode.cs
│   │   │   ├── IProtocolProcessor.cs
│   │   │   ├── IWebSocketFragment.cs
│   │   │   ├── MultipleProtocolSwitchProcessor.cs
│   │   │   ├── OpCode.cs
│   │   │   ├── PlainFragment.cs
│   │   │   ├── ProtocolProcessorBase..cs
│   │   │   ├── Rfc6455Processor.cs
│   │   │   ├── WebSocketDataFrame.cs
│   │   │   ├── WebSocketDataFrameReader.cs
│   │   │   ├── WebSocketDataReader.cs
│   │   │   ├── WebSocketHeaderReader.cs
│   │   │   ├── WebSocketReaderBase.cs
│   │   │   └── WebSocketSecKey3Reader.cs
│   │   ├── SubProtocol
│   │   │   ├── AsyncJsonSubCommand.cs
│   │   │   ├── BasicSubCommandParser.cs
│   │   │   ├── BasicSubProtocol.cs
│   │   │   ├── IRequestInfoParser.cs
│   │   │   ├── ISubCommand.cs
│   │   │   ├── ISubProtocol.cs
│   │   │   ├── JsonSubCommand.cs
│   │   │   ├── JsonSubCommandBase.cs
│   │   │   ├── SubCommandBase.cs
│   │   │   ├── SubProtocolBase.cs
│   │   │   └── SubRequestInfo.cs
│   │   ├── SuperWebSocket.NET35.csproj
│   │   ├── SuperWebSocket.csproj
│   │   ├── WebSocketConst.cs
│   │   ├── WebSocketProtocol.cs
│   │   ├── WebSocketServer.cs
│   │   ├── WebSocketSession.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │       ├── Newtonsoft.Json.dll
│   │   │       ├── SuperSocket.Common.dll
│   │   │       ├── SuperSocket.SocketBase.dll
│   │   │       ├── SuperWebSocket.dll
│   │   │       ├── SuperWebSocket.pdb
│   │   │       ├── System.Threading.dll
│   │   │       └── log4net.dll
│   │   └── obj
│   │       └── Debug
│   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │           ├── SuperWebSocket.NET35.csproj.FileListAbsolute.txt
│   │           ├── SuperWebSocket.NET35.csprojResolveAssemblyReference.cache
│   │           ├── SuperWebSocket.csproj.FileListAbsolute.txt
│   │           ├── SuperWebSocket.csprojResolveAssemblyReference.cache
│   │           ├── SuperWebSocket.dll
│   │           ├── SuperWebSocket.pdb
│   │           └── TempPE
│   ├── SuperWebSocket.sln
│   ├── SuperWebSocket.suo
│   ├── SuperWebSocket.v12.suo
│   ├── SuperWebSocketTest
│   │   ├── Command
│   │   │   ├── ECHO.cs
│   │   │   └── QUIT.cs
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── SubProtocolWebSocketTest.cs
│   │   ├── SuperWebSocketTest.NET35.csproj
│   │   ├── SuperWebSocketTest.csproj
│   │   ├── WebSocketClientTest.cs
│   │   ├── WebSocketFramingTest.cs
│   │   ├── WebSocketHybi10Test.cs
│   │   ├── WebSocketRawTest.cs
│   │   ├── WebSocketTestBase.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │       ├── Newtonsoft.Json.dll
│   │   │       ├── SuperSocket.Common.dll
│   │   │       ├── SuperSocket.SocketBase.dll
│   │   │       ├── SuperSocket.SocketEngine.dll
│   │   │       ├── SuperWebSocket.dll
│   │   │       ├── SuperWebSocket.pdb
│   │   │       ├── SuperWebSocketTest.dll
│   │   │       ├── SuperWebSocketTest.pdb
│   │   │       ├── System.Threading.dll
│   │   │       ├── WebSocket4Net.dll
│   │   │       ├── log4net.dll
│   │   │       └── nunit.framework.dll
│   │   └── obj
│   │       └── Debug
│   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │           ├── SuperWebSocketTest.NET35.csproj.FileListAbsolute.txt
│   │           ├── SuperWebSocketTest.NET35.csprojResolveAssemblyReference.cache
│   │           ├── SuperWebSocketTest.csproj.FileListAbsolute.txt
│   │           ├── SuperWebSocketTest.csprojResolveAssemblyReference.cache
│   │           ├── SuperWebSocketTest.dll
│   │           ├── SuperWebSocketTest.pdb
│   │           └── TempPE
│   ├── TestSpp
│   │   ├── App.config
│   │   ├── Form1.Designer.cs
│   │   ├── Form1.cs
│   │   ├── Program.cs
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── TestSpp.csproj
│   │   ├── bin
│   │   │   └── Debug
│   │   │       ├── TestSpp.exe
│   │   │       ├── TestSpp.exe.config
│   │   │       └── TestSpp.pdb
│   │   └── 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
│   │           ├── TestSpp.Properties.Resources.resources
│   │           ├── TestSpp.csproj.FileListAbsolute.txt
│   │           ├── TestSpp.csproj.GenerateResource.Cache
│   │           ├── TestSpp.csprojResolveAssemblyReference.cache
│   │           ├── TestSpp.exe
│   │           └── TestSpp.pdb
│   ├── UpgradeLog.htm
│   ├── UpgradeLog2.htm
│   ├── log4net.config
│   ├── log4net.unix.config
│   └── superwebsocket.snk
└── c# SuperWebSocket 实例_SuperWebSocket(群聊单聊).rar

116 directories, 439 files


网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警