CSuperSocket.All 2.1.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package CSuperSocket.All --version 2.1.2
NuGet\Install-Package CSuperSocket.All -Version 2.1.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="CSuperSocket.All" Version="2.1.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add CSuperSocket.All --version 2.1.2
#r "nuget: CSuperSocket.All, 2.1.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install CSuperSocket.All as a Cake Addin
#addin nuget:?package=CSuperSocket.All&version=2.1.2

// Install CSuperSocket.All as a Cake Tool
#tool nuget:?package=CSuperSocket.All&version=2.1.2

基于supersocket的商用项目维护开发 1.修复supersocket部分bug 2.移植到.NET CORE|NETStandard.Library 平台 3.简化服务器配置 4.将之前的app.config配置移植到json中 在appsettings.json中增加配置 "SimpleSocketConfig": { "ServerTypeNiceName": "IcbTerminalService", "ServerTypeFullName": "ICheBao.Service,ICheBao.Protocols", "KeepAliveTime": 10, "Port": 7000, "ListenBacklog": 2147483647, "MaxConnectionNumber": 65535, "IdleSessionTimeOut": 300, "ClearIdleSessionInterval": 60, "ClearIdleSession": true, "ReceiveBufferSize": 128, "SendBufferSize": 128, "DisableSessionSnapshot": true, "Name": "IcbTerminal", "MaxCompletionPortThreads": 10000, "PerformanceDataCollectInterval": 120, "DisablePerformanceDataCollector": false },

启动代码: var simpleCfg = IocUnity.Get<SimpleSocketConfig>();

        var ssCfg = simpleCfg.ConvertSocketServiceCfg();

        Stopwatch startWatch = new Stopwatch();

        startWatch.Start();
        var bootstrap = BootstrapFactory.CreateBootstrapFromServerCfg(ssCfg);
        startWatch.Stop();
        Console.WriteLine("CSpuerTcp初始化工厂耗时:{0}ms", startWatch.ElapsedMilliseconds);

        startWatch.Reset();
        startWatch.Start();
        var isSuccess = bootstrap.Initialize();
        startWatch.Stop();
        Console.WriteLine("CSpuerTcp启动耗时:{0}ms",startWatch.ElapsedMilliseconds);
Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.1.2.9 3,063 4/16/2020
2.1.2.8 2,028 6/10/2019
2.1.2.7 1,351 6/10/2019
2.1.2.6 1,366 6/10/2019
2.1.2.5 1,312 6/10/2019
2.1.2.4 1,295 6/6/2019
2.1.2.3 2,568 5/22/2018
2.1.2.2 1,621 2/22/2018
2.1.2 1,605 2/1/2018