C#里边要实现Socket网络编程,实现tcp和udp协议收发任意的数据,比如二进制的图片、音频、视频等数据,或者是xml,json,字符串等文本数据。我们可以采用.NET自带的类库编写,但是由于这些类库只是基础的设施,需要自行处理比如断线重连、网络波动、tcp粘包等等问题,并且还要考虑稳定性和吞吐等因素,所以可以调用一些类库。 这里介绍一个比较稳定可靠,又接口简单的sdk类库。名字叫SharpSocket。附件就是一个完整的例子,可以快速知道如何使用。
资源文件列表
SharpSocket_2.8.1_Trial/Demo/ReadMe.txt , 644
SharpSocket_2.8.1_Trial/Demo/TCPBinaryDemo/CoreDll/BinaryFormatHelper.cs , 442
SharpSocket_2.8.1_Trial/Demo/TCPBinaryDemo/CoreDll/CoreDll.csproj , 2450
SharpSocket_2.8.1_Trial/Demo/TCPBinaryDemo/CoreDll/MessageHead.cs , 1376
SharpSocket_2.8.1_Trial/Demo/TCPBinaryDemo/CoreDll/MessageType.cs , 499
SharpSocket_2.8.1_Trial/Demo/TCPBinaryDemo/CoreDll/Properties/AssemblyInfo.cs , 1321
SharpSocket_2.8.1_Trial/Demo/TCPBinaryDemo/CoreDll/RequestFormat.cs , 721
SharpSocket_2.8.1_Trial/Demo/TCPBinaryDemo/CoreDll/ResponseFormat.cs , 1452
SharpSocket_2.8.1_Trial/Demo/TCPBinaryDemo/CoreDll/SerializeHelper.cs , 1236
SharpSocket_2.8.1_Trial/Demo/TCPBinaryDemo/Dll/SGSupport.dll , 937984
SharpSocket_2.8.1_Trial/Demo/TCPBinaryDemo/Dll/SharpSocket.chm , 323565
SharpSocket_2.8.1_Trial/Demo/TCPBinaryDemo/Dll/SharpSocket.dll , 310272
SharpSocket_2.8.1_Trial/Demo/TCPBinaryDemo/Dll/SharpSocket.xml , 33008
SharpSocket_2.8.1_Trial/Demo/TCPBinaryDemo/Dll/常见问题解答.txt , 1871
SharpSocket_2.8.1_Trial/Demo/TCPBinaryDemo/TCPBinaryClient/bin/Debug/CoreDll.dll , 6656
SharpSocket_2.8.1_Trial/Demo/TCPBinaryDemo/TCPBinaryClient/bin/Debug/CoreDll.pdb , 26112
SharpSocket_2.8.1_Trial/Demo/TCPBinaryDemo/TCPBinaryClient/bin/Debug/SGSupport.dll , 937984
SharpSocket_2.8.1_Trial/Demo/TCPBinaryDemo/TCPBinaryClient/bin/Debug/SharpSocket.dll , 310272
SharpSocket_2.8.1_Trial/Demo/TCPBinaryDemo/TCPBinaryClient/bin/Debug/SharpSocket.xml , 33008
SharpSocket_2.8.1_Trial/Demo/TCPBinaryDemo/TCPBinaryClient/bin/Debug/TCPBinaryClient.exe , 13312
SharpSocket_2.8.1_Trial/Demo/TCPBinaryDemo/TCPBinaryClient/bin/Debug/TCPBinaryClient.pdb , 24064
SharpSocket_2.8.1_Trial/Demo/TCPBinaryDemo/TCPBinaryClient/Form1.cs , 4909
SharpSocket_2.8.1_Trial/Demo/TCPBinaryDemo/TCPBinaryClient/Form1.Designer.cs , 9581
SharpSocket_2.8.1_Trial/Demo/TCPBinaryDemo/TCPBinaryClient/Form1.resx , 5817
SharpSocket_2.8.1_Trial/Demo/TCPBinaryDemo/TCPBinaryClient/Program.cs , 476
SharpSocket_2.8.1_Trial/Demo/TCPBinaryDemo/TCPBinaryClient/Properties/AssemblyInfo.cs , 1329
SharpSocket_2.8.1_Trial/Demo/TCPBinaryDemo/TCPBinaryClient/Properties/Resources.Designer.cs , 2865
SharpSocket_2.8.1_Trial/Demo/TCPBinaryDemo/TCPBinaryClient/Properties/Resources.resx , 5612
SharpSocket_2.8.1_Trial/Demo/TCPBinaryDemo/TCPBinaryClient/Properties/Settings.Designer.cs , 1115
SharpSocket_2.8.1_Trial/Demo/TCPBinaryDemo/TCPBinaryClient/Properties/Settings.settings , 249
SharpSocket_2.8.1_Trial/Demo/TCPBinaryDemo/TCPBinaryClient/TCPBinaryClient.csproj , 3791
SharpSocket_2.8.1_Trial/Demo/TCPBinaryDemo/TCPBinaryDemo.suo , 29696
SharpSocket_2.8.1_Trial/Demo/TCPBinaryDemo/TCPBinaryServer/bin/Debug/CoreDll.dll , 6656
SharpSocket_2.8.1_Trial/Demo/TCPBinaryDemo/TCPBinaryServer/bin/Debug/CoreDll.pdb , 26112
SharpSocket_2.8.1_Trial/Demo/TCPBinaryDemo/TCPBinaryServer/bin/Debug/SGSupport.dll , 937984
SharpSocket_2.8.1_Trial/Demo/TCPBinaryDemo/TCPBinaryServer/bin/Debug/SharpSocket.dll , 310272
SharpSocket_2.8.1_Trial/Demo/TCPBinaryDemo/TCPBinaryServer/bin/Debug/SharpSocket.xml , 33008
SharpSocket_2.8.1_Trial/Demo/TCPBinaryDemo/TCPBinaryServer/bin/Debug/TCPBinaryServer.exe , 16896
SharpSocket_2.8.1_Trial/Demo/TCPBinaryDemo/TCPBinaryServer/bin/Debug/TCPBinaryServer.pdb , 28160
SharpSocket_2.8.1_Trial/Demo/TCPBinaryDemo/TCPBinaryServer/Form1.cs , 8195
SharpSocket_2.8.1_Trial/Demo/TCPBinaryDemo/TCPBinaryServer/Form1.Designer.cs , 16073
SharpSocket_2.8.1_Trial/Demo/TCPBinaryDemo/TCPBinaryServer/Form1.resx , 6012
SharpSocket_2.8.1_Trial/Demo/TCPBinaryDemo/TCPBinaryServer/Program.cs , 476
SharpSocket_2.8.1_Trial/Demo/TCPBinaryDemo/TCPBinaryServer/Properties/AssemblyInfo.cs , 1329
SharpSocket_2.8.1_Trial/Demo/TCPBinaryDemo/TCPBinaryServer/Properties/Resources.Designer.cs , 2865
SharpSocket_2.8.1_Trial/Demo/TCPBinaryDemo/TCPBinaryServer/Properties/Resources.resx , 5612
SharpSocket_2.8.1_Trial/Demo/TCPBinaryDemo/TCPBinaryServer/Properties/Settings.Designer.cs , 1115
SharpSocket_2.8.1_Trial/Demo/TCPBinaryDemo/TCPBinaryServer/Properties/Settings.settings , 249
SharpSocket_2.8.1_Trial/Demo/TCPBinaryDemo/TCPBinaryServer/TCPBinaryServer.csproj , 3791
SharpSocket_2.8.1_Trial/Demo/TCPBinaryDemo/TCP收发二进制数据.sln , 2664
SharpSocket_2.8.1_Trial/Demo/TCPBinaryDemo/说明.txt , 460
SharpSocket_2.8.1_Trial/Demo/TCPTextDemo/.vs/Supercharger/TCPTextClient/codemap.dat , 5157
SharpSocket_2.8.1_Trial/Demo/TCPTextDemo/.vs/Supercharger/TCPTextClient/global_history.dat , 10394
SharpSocket_2.8.1_Trial/Demo/TCPTextDemo/.vs/Supercharger/TCPTextClient/workbench.dat , 217
SharpSocket_2.8.1_Trial/Demo/TCPTextDemo/.vs/Supercharger/TCPTextServer/codemap.dat , 5877
SharpSocket_2.8.1_Trial/Demo/TCPTextDemo/.vs/Supercharger/TCPTextServer/global_history.dat , 2402
SharpSocket_2.8.1_Trial/Demo/TCPTextDemo/.vs/Supercharger/TCPTextServer/workbench.dat , 217
SharpSocket_2.8.1_Trial/Demo/TCPTextDemo/.vs/TCP收发文本数据/v15/.suo , 48128
SharpSocket_2.8.1_Trial/Demo/TCPTextDemo/.vs/TCP收发文本数据/v15/Server/sqlite3/db.lock , 0
SharpSocket_2.8.1_Trial/Demo/TCPTextDemo/.vs/TCP收发文本数据/v15/Server/sqlite3/storage.ide , 40960
SharpSocket_2.8.1_Trial/Demo/TCPTextDemo/.vs/TCP收发文本数据/v15/Server/sqlite3/storage.ide-shm , 32768
SharpSocket_2.8.1_Trial/Demo/TCPTextDemo/.vs/TCP收发文本数据/v15/Server/sqlite3/storage.ide-wal , 4120032
SharpSocket_2.8.1_Trial/Demo/TCPTextDemo/Dll/SGSupport.dll , 937984
SharpSocket_2.8.1_Trial/Demo/TCPTextDemo/Dll/SharpSocket.chm , 323565
SharpSocket_2.8.1_Trial/Demo/TCPTextDemo/Dll/SharpSocket.dll , 310272
SharpSocket_2.8.1_Trial/Demo/TCPTextDemo/Dll/SharpSocket.xml , 33008
SharpSocket_2.8.1_Trial/Demo/TCPTextDemo/Dll/常见问题解答.txt , 1871
SharpSocket_2.8.1_Trial/Demo/TCPTextDemo/TCPTextClient/bin/Debug/SGSupport.dll , 937984
SharpSocket_2.8.1_Trial/Demo/TCPTextDemo/TCPTextClient/bin/Debug/SharpSocket.dll , 310272
SharpSocket_2.8.1_Trial/Demo/TCPTextDemo/TCPTextClient/bin/Debug/SharpSocket.xml , 33008
SharpSocket_2.8.1_Trial/Demo/TCPTextDemo/TCPTextClient/bin/Debug/TCPTextClient.exe , 12800
SharpSocket_2.8.1_Trial/Demo/TCPTextDemo/TCPTextClient/bin/Debug/TCPTextClient.pdb , 22016
SharpSocket_2.8.1_Trial/Demo/TCPTextDemo/TCPTextClient/Form1.cs , 3786
SharpSocket_2.8.1_Trial/Demo/TCPTextDemo/TCPTextClient/Form1.Designer.cs , 9223
SharpSocket_2.8.1_Trial/Demo/TCPTextDemo/TCPTextClient/Form1.resx , 5817
SharpSocket_2.8.1_Trial/Demo/TCPTextDemo/TCPTextClient/Program.cs , 476
SharpSocket_2.8.1_Trial/Demo/TCPTextDemo/TCPTextClient/Properties/AssemblyInfo.cs , 1327
SharpSocket_2.8.1_Trial/Demo/TCPTextDemo/TCPTextClient/Properties/Resources.Designer.cs , 2866
SharpSocket_2.8.1_Trial/Demo/TCPTextDemo/TCPTextClient/Properties/Resources.resx , 5612
SharpSocket_2.8.1_Trial/Demo/TCPTextDemo/TCPTextClient/Properties/Settings.Designer.cs , 1113
SharpSocket_2.8.1_Trial/Demo/TCPTextDemo/TCPTextClient/Properties/Settings.settings , 249
SharpSocket_2.8.1_Trial/Demo/TCPTextDemo/TCPTextClient/TCPTextClient.csproj , 3578
SharpSocket_2.8.1_Trial/Demo/TCPTextDemo/TCPTextServer/bin/Debug/SGSupport.dll , 937984
SharpSocket_2.8.1_Trial/Demo/TCPTextDemo/TCPTextServer/bin/Debug/SharpSocket.dll , 310272
SharpSocket_2.8.1_Trial/Demo/TCPTextDemo/TCPTextServer/bin/Debug/SharpSocket.xml , 33008
SharpSocket_2.8.1_Trial/Demo/TCPTextDemo/TCPTextServer/bin/Debug/TCPTextServer.exe , 18944
SharpSocket_2.8.1_Trial/Demo/TCPTextDemo/TCPTextServer/bin/Debug/TCPTextServer.pdb , 28160
SharpSocket_2.8.1_Trial/Demo/TCPTextDemo/TCPTextServer/Form1.cs , 8365
SharpSocket_2.8.1_Trial/Demo/TCPTextDemo/TCPTextServer/Form1.Designer.cs , 21013
SharpSocket_2.8.1_Trial/Demo/TCPTextDemo/TCPTextServer/Form1.resx , 6011
SharpSocket_2.8.1_Trial/Demo/TCPTextDemo/TCPTextServer/Program.cs , 476
SharpSocket_2.8.1_Trial/Demo/TCPTextDemo/TCPTextServer/Properties/AssemblyInfo.cs , 1327
SharpSocket_2.8.1_Trial/Demo/TCPTextDemo/TCPTextServer/Properties/Resources.Designer.cs , 2866
SharpSocket_2.8.1_Trial/Demo/TCPTextDemo/TCPTextServer/Properties/Resources.resx , 5612
SharpSocket_2.8.1_Trial/Demo/TCPTextDemo/TCPTextServer/Properties/Settings.Designer.cs , 1113
SharpSocket_2.8.1_Trial/Demo/TCPTextDemo/TCPTextServer/Properties/Settings.settings , 249
SharpSocket_2.8.1_Trial/Demo/TCPTextDemo/TCPTextServer/TCPTextServer.csproj , 3578
SharpSocket_2.8.1_Trial/Demo/TCPTextDemo/TCP收发文本数据.sln , 1342
SharpSocket_2.8.1_Trial/Demo/TCPTextDemo/TCP文本模式下示例.suo , 29184
SharpSocket_2.8.1_Trial/Demo/TCPTextDemo/WebSocketClient/WebSocketClient.html , 3713
SharpSocket_2.8.1_Trial/Demo/TCPTextDemo/说明.txt , 436
SharpSocket_2.8.1_Trial/Demo/UDPDemo/.vs/Supercharger/CoreDll/codemap.dat , 14511
SharpSocket_2.8.1_Trial/Demo/UDPDemo/.vs/Supercharger/CoreDll/global_history.dat , 7444
SharpSocket_2.8.1_Trial/Demo/UDPDemo/.vs/Supercharger/CoreDll/workbench.dat , 211
SharpSocket_2.8.1_Trial/Demo/UDPDemo/.vs/Supercharger/UDPClient/codemap.dat , 7332
SharpSocket_2.8.1_Trial/Demo/UDPDemo/.vs/Supercharger/UDPClient/global_history.dat , 7011
SharpSocket_2.8.1_Trial/Demo/UDPDemo/.vs/Supercharger/UDPClient/workbench.dat , 213
SharpSocket_2.8.1_Trial/Demo/UDPDemo/.vs/Supercharger/UDPServer/codemap.dat , 6917
SharpSocket_2.8.1_Trial/Demo/UDPDemo/.vs/Supercharger/UDPServer/global_history.dat , 8192
SharpSocket_2.8.1_Trial/Demo/UDPDemo/.vs/Supercharger/UDPServer/workbench.dat , 213
SharpSocket_2.8.1_Trial/Demo/UDPDemo/.vs/UDPDemo/v15/.suo , 62976
SharpSocket_2.8.1_Trial/Demo/UDPDemo/.vs/UDPDemo/v15/Server/sqlite3/db.lock , 0
SharpSocket_2.8.1_Trial/Demo/UDPDemo/.vs/UDPDemo/v15/Server/sqlite3/storage.ide , 540672
SharpSocket_2.8.1_Trial/Demo/UDPDemo/.vs/UDPDemo/v15/Server/sqlite3/storage.ide-shm , 32768
SharpSocket_2.8.1_Trial/Demo/UDPDemo/.vs/UDPDemo/v15/Server/sqlite3/storage.ide-wal , 4124152
SharpSocket_2.8.1_Trial/Demo/UDPDemo/CoreDll/CoreDll.csproj , 2453
SharpSocket_2.8.1_Trial/Demo/UDPDemo/CoreDll/MessageHead.cs , 1378
SharpSocket_2.8.1_Trial/Demo/UDPDemo/CoreDll/MessageType.cs , 560
SharpSocket_2.8.1_Trial/Demo/UDPDemo/CoreDll/Properties/AssemblyInfo.cs , 1321
SharpSocket_2.8.1_Trial/Demo/UDPDemo/CoreDll/RequestFormatt.cs , 890
SharpSocket_2.8.1_Trial/Demo/UDPDemo/CoreDll/ResponseFormat.cs , 1482
SharpSocket_2.8.1_Trial/Demo/UDPDemo/CoreDll/SerializeHelper.cs , 1412
SharpSocket_2.8.1_Trial/Demo/UDPDemo/CoreDll/StreamContractHelper.cs , 439
SharpSocket_2.8.1_Trial/Demo/UDPDemo/Dll/SGSupport.dll , 937984
SharpSocket_2.8.1_Trial/Demo/UDPDemo/Dll/SharpSocket.chm , 323565
SharpSocket_2.8.1_Trial/Demo/UDPDemo/Dll/SharpSocket.dll , 310272
SharpSocket_2.8.1_Trial/Demo/UDPDemo/Dll/SharpSocket.xml , 33008
SharpSocket_2.8.1_Trial/Demo/UDPDemo/Dll/常见问题解答.txt , 1871
SharpSocket_2.8.1_Trial/Demo/UDPDemo/StriveEngine.BinaryDemo-UDP.suo , 51712
SharpSocket_2.8.1_Trial/Demo/UDPDemo/UDPClient/bin/Debug/CoreDll.dll , 6656
SharpSocket_2.8.1_Trial/Demo/UDPDemo/UDPClient/bin/Debug/CoreDll.pdb , 26112
SharpSocket_2.8.1_Trial/Demo/UDPDemo/UDPClient/bin/Debug/SGSupport.dll , 937984
SharpSocket_2.8.1_Trial/Demo/UDPDemo/UDPClient/bin/Debug/SharpSocket.dll , 310272
SharpSocket_2.8.1_Trial/Demo/UDPDemo/UDPClient/bin/Debug/SharpSocket.xml , 33008
SharpSocket_2.8.1_Trial/Demo/UDPDemo/UDPClient/bin/Debug/UDPClient.exe , 12800
SharpSocket_2.8.1_Trial/Demo/UDPDemo/UDPClient/bin/Debug/UDPClient.pdb , 22016
SharpSocket_2.8.1_Trial/Demo/UDPDemo/UDPClient/Form1.cs , 3625
SharpSocket_2.8.1_Trial/Demo/UDPDemo/UDPClient/Form1.Designer.cs , 9630
SharpSocket_2.8.1_Trial/Demo/UDPDemo/UDPClient/Form1.resx , 8264
SharpSocket_2.8.1_Trial/Demo/UDPDemo/UDPClient/Program.cs , 472
SharpSocket_2.8.1_Trial/Demo/UDPDemo/UDPClient/Properties/AssemblyInfo.cs , 1323
SharpSocket_2.8.1_Trial/Demo/UDPDemo/UDPClient/Properties/Resources.Designer.cs , 2853
SharpSocket_2.8.1_Trial/Demo/UDPDemo/UDPClient/Properties/Resources.resx , 5612
SharpSocket_2.8.1_Trial/Demo/UDPDemo/UDPClient/Properties/Settings.Designer.cs , 1109
SharpSocket_2.8.1_Trial/Demo/UDPDemo/UDPClient/Properties/Settings.settings , 249
SharpSocket_2.8.1_Trial/Demo/UDPDemo/UDPClient/UDPClient.csproj , 3779
SharpSocket_2.8.1_Trial/Demo/UDPDemo/UDPDemo.sln , 2628
SharpSocket_2.8.1_Trial/Demo/UDPDemo/UDPDemo.suo , 25088
SharpSocket_2.8.1_Trial/Demo/UDPDemo/UDPServer/bin/Debug/CoreDll.dll , 6656
SharpSocket_2.8.1_Trial/Demo/UDPDemo/UDPServer/bin/Debug/CoreDll.pdb , 26112
SharpSocket_2.8.1_Trial/Demo/UDPDemo/UDPServer/bin/Debug/SGSupport.dll , 937984
最多只能显示150条信息!
