EaCloud.AspNetCore
8.0.1.9
dotnet add package EaCloud.AspNetCore --version 8.0.1.9
NuGet\Install-Package EaCloud.AspNetCore -Version 8.0.1.9
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="EaCloud.AspNetCore" Version="8.0.1.9" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add EaCloud.AspNetCore --version 8.0.1.9
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: EaCloud.AspNetCore, 8.0.1.9"
#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 EaCloud.AspNetCore as a Cake Addin #addin nuget:?package=EaCloud.AspNetCore&version=8.0.1.9 // Install EaCloud.AspNetCore as a Cake Tool #tool nuget:?package=EaCloud.AspNetCore&version=8.0.1.9
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
EaCloud AspNetCore 组件
说明
EaCloud AspNetCore 组件,提供 AspNetCore 的服务端功能的封装。
用法
可按照如下配置方式使用:
- 通过nuget引用
EaCloud.AspNetCore
程序集
Install-Package EaCloud.AspNetCore
- 在
appsettings.json
中 的EaCloud
节点下添加如下配置节点
{
//Cors跨域策略
"Cors": {
"PolicyName": "EaCloudAPI", //策略名称
"AllowAnyHeader": true, //允许任意请求头
"WithHeaders": [ "Authorization", "Accept", "Accept-Language" ], //允许的请求头,当 AllowAnyHeader = false 时生效
"AllowAnyMethod": true, //允许任意方法
"WithMethods": [ "POST", "PUT", "DELETE" ], //允许的方法,当 AllowAnyMethod = false 时生效
"AllowCredentials": true, //允许跨域凭据,优先级高于 DisallowCredentials 设置
"DisallowCredentials": false, //禁止跨域凭据
"AllowAnyOrigin": true, //允许任意来源
"WithOrigins": [ "https://localhost:44398", "http://127.0.0.1:5001" ], //允许的来源,当 AllowAnyOrigin = false 时生效
"Enabled": true //设置跨源资源共享服务是否启用
},
//Mvc选项
"Mvc": {
"DefaultLanguage": "zh_CN", //默认语言,可实现AcceptLanguage请求语言的消息字符解析,语言文件存放于“Localization”路径下
"IsLowercaseJsonProperty": false, //Json属性名称驼峰(lowerCase)写法设置,默认:false
"IsLowercaseUrls": false, //URL驼峰(lowerCase)写法设置,默认:false
"ReferenceLoopHandling": "Ignore", //循环引用处理:"Error"、"Ignore"、"Serialize",默认:"Ignore"
"NullValueHandling": "Include", //Null值处理:"Include"、"Ignore",默认:"Include"
"StringEnumConvert": false, //String与Enum类型转换,默认:false
"StringLongConvert": true, //String与Long类型转换,默认:true
"DateFormatHandling": "Iso", //日期时间格式化处理:"Iso"、"Microsoft",默认:"Iso"
"DateFormatString": "", //日期时间格式化字符串,例如:"yyyy/MM/dd HH:mm:ss",默认:""
"DateTimeZoneHandling": "Local", //日期时间时区处理:"Local"、"Utc"、Unspecified"、RoundtripKind",默认:"Local"
"DateParseHandling": "DateTime" //日期时间解析处理:"None"、"DateTime"、"DateTimeOffset",默认:"DateTime""
},
//宿主配置策略
"Host": {
//终结点
"Endpoints": {
"Http": {
"Address": "", //IP地址(*或者不填默认本机任意IP)
"Port": "38062", //监听端口
"Enabled": true //是否启用
},
"Https": {
"Address": "*", //IP地址(*或者不填默认本机任意IP)
"Port": "38063", //监听端口
//SSL证书(不为空时将使用HTTPS)
"Certificate": {
"Source": "File", //源(固定字符“File”)
"Path": "Certificate\\eacloud.pfx", //证书路径
"Password": "password" //证书密钥
},
"Enabled": true //是否启用
}
}
},
//SignalR实时通信配置
//心跳监测机制:A. 以客户端为基准的机制。客户端配置:serverTimeoutInMilliseconds + 服务端端配置:keepAliveinterval,建议 serverTimeoutInMilliseconds 的值是 keepAliveinterval 的两倍,从而保证客户端不进入 onclose 回调,不掉线。
//心跳监测机制:B. 以服务端为基准的机制。客户端配置:keepAliveIntervalInmillisecods + 服务端配置:clientTimeoutInterval,建议 clientTimeoutInterval 的值是 keepAliveIntervalInmillisecods 的两倍,从而保证不进服务器端的 OnDisconnectedAsync 回调,即不掉线。
"SignalR": {
//如果客户端在此时间间隔内未收到消息(包括保持活动状态),则服务器会将客户端视为已断开连接。默认超时为30秒。
//由于实现方式的原因,客户端实际标记为断开连接可能需要更长的时间。建议值为 KeepAliveInterval 值的两倍。
"ClientTimeoutInterval": 30,
//如果客户端在此时间间隔内未发送初始握手消息,连接将关闭。 这是一种高级设置,只应在握手超时错误由于严重网络延迟而发生时进行修改。默认超时为15秒。
//有关握手过程的详细信息,请参阅SignalR 集线器协议规范。
"HandshakeTimeout": -1,
//如果服务器未在此时间间隔内发送消息,则会自动发送 ping 消息,使连接保持打开状态。默认间隔为15秒。
//更改 KeepAliveInterval时,请更改客户端上的 ServerTimeout/serverTimeoutInMilliseconds 设置。 建议的 ServerTimeout/serverTimeoutInMilliseconds 值为 KeepAliveInterval 值的两倍。
"KeepAliveInterval": 15,
"MaximumReceiveMessageSize": 51200, //单个传入集线器消息的最大消息大小。默认值为32KB。
"StreamBufferCapacity": 1024, //客户端上载流的最大缓冲区大小。默认大小为10。
"MessagePackEnabled": true, //启用MessagePack(支持二进制内容传输)
"RoutePattern": "/signalr", //线路型式(用于挂载SignalR终结点)
"Enabled": true //是否启用
},
}
交流
QQ群号:863605868 | 微信号:SeonHu |
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- EaCloud (>= 8.0.1.9)
- Microsoft.AspNetCore.Authentication.JwtBearer (>= 8.0.11)
- Microsoft.AspNetCore.Authentication.MicrosoftAccount (>= 8.0.11)
- Microsoft.AspNetCore.Authorization (>= 8.0.11)
- Microsoft.AspNetCore.Mvc.NewtonsoftJson (>= 8.0.11)
- Microsoft.AspNetCore.SignalR.Protocols.MessagePack (>= 8.0.11)
- Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson (>= 8.0.11)
- Microsoft.AspNetCore.SignalR.StackExchangeRedis (>= 8.0.11)
NuGet packages (13)
Showing the top 5 NuGet packages that depend on EaCloud.AspNetCore:
Package | Downloads |
---|---|
EaCloud.Identity
EaCloud 身份认证组件,基于 AspNetCore.Identity 和 EaCloud数据仓储模型 的身份认证实现。 |
|
EaCloud.SMS
EaCloud 短信组件,封装阿里云、逸峰信盈通验证码、通知、推广短信处理功能。目前已完成验证码短信发送、验证的处理机制。 |
|
EaCloud.Hangfire
EaCloud Hangfire 后台任务组件,封装基于 Hangfire 后台任务的服务端实现。 |
|
EaCloud.File
EaCloud 文件组件,封装基于Web的文件资源管理服务,支持数据库、物理存储、数据存储服务三种存储方式,物理存储模式下支持静态资源URL映射。 |
|
EaCloud.Pack.Audit
EaCloud 审计模块,包含操作审计和数据审计。 |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
8.0.1.9 | 322 | 11/15/2024 |
8.0.1.8 | 319 | 11/13/2024 |
8.0.1.7 | 363 | 10/9/2024 |
8.0.1.6 | 354 | 9/29/2024 |
8.0.1.5 | 425 | 9/13/2024 |
8.0.1.4 | 405 | 8/10/2024 |
8.0.1.3 | 394 | 8/7/2024 |
8.0.1.2 | 387 | 8/7/2024 |
8.0.1.1 | 384 | 8/7/2024 |
8.0.0.9 | 395 | 8/7/2024 |
8.0.0.8 | 269 | 8/5/2024 |
8.0.0.7 | 281 | 8/2/2024 |
8.0.0.6 | 287 | 8/1/2024 |
8.0.0.5 | 288 | 8/1/2024 |
8.0.0.4 | 226 | 7/31/2024 |
8.0.0.3 | 294 | 7/30/2024 |
8.0.0.2 | 325 | 7/25/2024 |
8.0.0.1 | 321 | 7/24/2024 |
7.0.9.4 | 563 | 7/19/2024 |
7.0.9.3 | 555 | 7/11/2024 |
7.0.9.2 | 547 | 7/6/2024 |
7.0.9.1 | 566 | 7/3/2024 |
7.0.8.9 | 596 | 6/28/2024 |
7.0.8.8 | 584 | 6/26/2024 |
7.0.8.7 | 600 | 6/22/2024 |
7.0.8.6 | 575 | 6/14/2024 |
7.0.8.5 | 602 | 5/31/2024 |
7.0.8.4 | 595 | 5/21/2024 |
7.0.8.3 | 598 | 5/21/2024 |
7.0.8.2 | 541 | 5/20/2024 |
7.0.8.1 | 565 | 5/20/2024 |
7.0.7.9 | 534 | 5/15/2024 |
7.0.7.8 | 526 | 5/10/2024 |
7.0.7.7 | 498 | 5/9/2024 |
7.0.7.6 | 529 | 5/9/2024 |
7.0.7.5 | 617 | 5/7/2024 |
7.0.7.4 | 598 | 4/28/2024 |
7.0.7.3 | 606 | 4/26/2024 |
7.0.7.2 | 606 | 4/21/2024 |
7.0.7.1 | 609 | 4/19/2024 |
7.0.6.9 | 635 | 4/15/2024 |
7.0.6.8 | 566 | 4/11/2024 |
7.0.6.7 | 577 | 4/11/2024 |
7.0.6.6 | 616 | 4/7/2024 |
7.0.6.5 | 598 | 4/7/2024 |
7.0.6.4 | 565 | 4/7/2024 |
7.0.6.3 | 590 | 4/7/2024 |
7.0.6.2 | 595 | 4/3/2024 |
7.0.6.1 | 616 | 4/3/2024 |
7.0.5.9 | 586 | 3/27/2024 |
7.0.5.8 | 601 | 3/23/2024 |
7.0.5.7 | 630 | 3/17/2024 |
7.0.5.6 | 648 | 3/17/2024 |
7.0.5.5 | 633 | 3/16/2024 |
7.0.5.4 | 644 | 3/13/2024 |
7.0.5.3 | 622 | 3/13/2024 |
7.0.5.2 | 674 | 3/6/2024 |
7.0.5.1 | 715 | 2/21/2024 |
7.0.4.9 | 738 | 2/21/2024 |
7.0.4.8 | 700 | 2/18/2024 |
7.0.4.7 | 778 | 2/5/2024 |
7.0.4.6 | 791 | 2/1/2024 |
7.0.4.5 | 780 | 1/26/2024 |
7.0.4.4 | 827 | 1/22/2024 |
7.0.4.3 | 787 | 1/17/2024 |
7.0.4.2 | 765 | 1/16/2024 |
7.0.4.1 | 810 | 1/16/2024 |
7.0.3.9 | 807 | 1/15/2024 |
7.0.3.8 | 785 | 1/3/2024 |
7.0.3.7 | 804 | 12/28/2023 |
7.0.3.6 | 832 | 12/27/2023 |
7.0.3.5 | 828 | 12/22/2023 |
7.0.3.4 | 799 | 12/22/2023 |
7.0.3.3 | 911 | 12/13/2023 |
7.0.3.2 | 850 | 12/13/2023 |
7.0.3.1 | 892 | 12/12/2023 |
7.0.2.9 | 946 | 11/26/2023 |
7.0.2.8 | 916 | 11/26/2023 |
7.0.2.7 | 945 | 9/26/2023 |
7.0.2.6 | 963 | 9/25/2023 |
7.0.2.5 | 990 | 9/15/2023 |
7.0.2.4 | 1,113 | 7/27/2023 |
7.0.2.3 | 1,165 | 7/22/2023 |
7.0.2.2 | 1,164 | 7/22/2023 |
7.0.2.1 | 1,141 | 7/21/2023 |
7.0.1.9 | 1,151 | 7/21/2023 |
7.0.1.8 | 1,174 | 7/20/2023 |
7.0.1.7 | 1,129 | 7/20/2023 |
7.0.1.6 | 1,301 | 7/4/2023 |
7.0.1.5 | 1,315 | 6/16/2023 |
7.0.1.4 | 1,286 | 6/13/2023 |
7.0.1.3 | 1,511 | 6/8/2023 |
7.0.1.2 | 1,710 | 6/2/2023 |
7.0.1.1 | 1,624 | 5/11/2023 |
7.0.0.9 | 1,669 | 5/10/2023 |
7.0.0.8 | 1,666 | 5/10/2023 |
7.0.0.7 | 1,783 | 4/19/2023 |
7.0.0.6 | 1,764 | 4/18/2023 |
7.0.0.5 | 1,924 | 3/27/2023 |
7.0.0.4 | 1,783 | 3/23/2023 |
7.0.0.3 | 1,874 | 1/31/2023 |
7.0.0.2 | 1,988 | 1/30/2023 |
7.0.0.1 | 1,908 | 12/24/2022 |
6.0.2.5 | 4,072 | 11/16/2022 |
6.0.2.4 | 4,237 | 11/10/2022 |
6.0.2.3 | 5,127 | 10/11/2022 |
6.0.2.2 | 5,572 | 9/23/2022 |
6.0.2.1 | 5,796 | 8/14/2022 |
6.0.1.9 | 5,742 | 8/13/2022 |
6.0.1.8 | 6,045 | 6/6/2022 |
6.0.1.7 | 6,116 | 5/26/2022 |
6.0.1.6 | 6,271 | 5/11/2022 |
6.0.1.5 | 6,185 | 5/10/2022 |
6.0.1.4 | 6,568 | 4/8/2022 |
6.0.1.3 | 6,549 | 4/2/2022 |
6.0.1.2 | 6,578 | 4/2/2022 |
6.0.1.1 | 6,659 | 3/18/2022 |
6.0.0.9 | 6,379 | 3/5/2022 |
6.0.0.8 | 6,527 | 2/19/2022 |
6.0.0.7 | 6,483 | 2/15/2022 |
6.0.0.6 | 6,507 | 2/14/2022 |
6.0.0.5 | 6,615 | 1/28/2022 |
6.0.0.4 | 6,074 | 1/13/2022 |
6.0.0.3 | 5,985 | 1/12/2022 |
6.0.0.2 | 3,858 | 12/21/2021 |
6.0.0.1 | 3,921 | 12/13/2021 |
5.0.3.7 | 5,679 | 10/16/2021 |
5.0.3.6 | 4,890 | 10/14/2021 |
5.0.3.5 | 4,850 | 10/13/2021 |
5.0.3.4 | 5,175 | 10/8/2021 |
5.0.3.3 | 4,777 | 9/17/2021 |
5.0.3.2 | 5,036 | 9/16/2021 |
5.0.3.1 | 4,970 | 9/15/2021 |
5.0.2.9 | 4,873 | 9/15/2021 |
5.0.2.8 | 4,607 | 8/31/2021 |
5.0.2.7 | 4,572 | 8/28/2021 |
5.0.2.6 | 4,778 | 8/22/2021 |
5.0.2.5 | 4,649 | 8/13/2021 |
5.0.2.4 | 4,546 | 8/13/2021 |
5.0.2.3 | 4,384 | 7/8/2021 |
5.0.2.2 | 4,328 | 7/1/2021 |
5.0.2.1 | 4,633 | 6/16/2021 |
5.0.1.9 | 4,256 | 5/12/2021 |
5.0.1.8 | 4,193 | 5/9/2021 |
5.0.1.7 | 4,415 | 5/7/2021 |
5.0.1.6 | 4,145 | 4/17/2021 |
5.0.1.5 | 3,994 | 4/16/2021 |
5.0.1.4 | 3,953 | 4/15/2021 |
5.0.1.3 | 3,957 | 4/15/2021 |
5.0.1.2 | 4,405 | 4/12/2021 |