EasilyNET.WebCore 1.9.0-preview1

This is a prerelease version of EasilyNET.WebCore.
There is a newer version of this package available.
See the version list below for details.
dotnet add package EasilyNET.WebCore --version 1.9.0-preview1
                    
NuGet\Install-Package EasilyNET.WebCore -Version 1.9.0-preview1
                    
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="EasilyNET.WebCore" Version="1.9.0-preview1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="EasilyNET.WebCore" Version="1.9.0-preview1" />
                    
Directory.Packages.props
<PackageReference Include="EasilyNET.WebCore" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add EasilyNET.WebCore --version 1.9.0-preview1
                    
#r "nuget: EasilyNET.WebCore, 1.9.0-preview1"
                    
#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.
#:package EasilyNET.WebCore@1.9.0-preview1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=EasilyNET.WebCore&version=1.9.0-preview1&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=EasilyNET.WebCore&version=1.9.0-preview1&prerelease
                    
Install as a Cake Tool

EasilyNET.WebCore

一些.Net 6+ 的 WebApi 常用中间件和一些 Filter,以及部分数据类型到 Json 的转换

EasilyNET.WebCore Filter 使用?

目前支持异常处理和返回数据格式化

  • 使用 Nuget 安装 EasilyNET.WebCore

  • 然后在 Program.cs 中添加如下内容

  • Net 6 +

// Add services to the container.
builder.Services.AddControllers(c =>
{
    c.Filters.Add<ExceptionFilter>(); // 异常处理Filter
    c.Filters.Add<ActionExecuteFilter>(); // 返回数据格式化Filter
});

EasilyNET.WebCore JsonConverter 使用?

  • 该库目前补充的 Converter 有: DateTimeConverter, DateTimeNullConverter, TimeSpanJsonConverter, TimeOnly, DateOnly

  • 其中 TimeOnly 和 DateOnly 仅支持.Net6+ API 内部使用,传入和传出 Json 仅支持固定格式字符串

  • 如: DateOnly👉"2021-11-11", TimeOnly👉"23:59:25"

  • 使用 Nuget 安装 EasilyNET.WebCore

  • 然后在上述 Program.cs 中添加如下内容

  • .Net 6 +

// Add services to the container.
builder.Services.AddControllers(c =>
{
    c.Filters.Add<ExceptionFilter>(); // 异常处理Filter
    c.Filters.Add<ActionExecuteFilter>(); // 返回数据格式化Filter
}).AddJsonOptions(c =>
{
    c.JsonSerializerOptions.Converters.Add(new SystemTextJsonConvert.DateTimeConverter());
    c.JsonSerializerOptions.Converters.Add(new SystemTextJsonConvert.DateTimeNullConverter());
});

EasilyNET.WebCore 中间件使用?

目前支持全局 API 执行时间中间件

  • 新增限流中间件(防抖),用于避免短时间内,重复请求

  • 使用 Nuget 安装 # EasilyNET.WebCore

  • 然后在 Program.cs 中添加如下内容

  • .Net 6 +

// Configure the HTTP request pipeline.
if (app.Environment.IsDevelopment()) app.UseDeveloperExceptionPage();

app.UseHoyoResponseTime(); // 全局Action执行时间
...
app.Run();

.Net 6 中使用 3 种库的方法集合

  • Program.cs 文件
var builder = WebApplication.CreateBuilder(args);

// Add services to the container.
builder.Services.AddControllers(c =>
{
    c.Filters.Add<ExceptionFilter>(); // 异常处理Filter
    c.Filters.Add<ActionExecuteFilter>(); // 返回数据格式化Filter
}).AddJsonOptions(c =>
{
    c.JsonSerializerOptions.Converters.Add(new SystemTextJsonConvert.DateTimeConverter());
    c.JsonSerializerOptions.Converters.Add(new SystemTextJsonConvert.DateTimeNullConverter());
});
...

var app = builder.Build();

// Configure the HTTP request pipeline.
if (app.Environment.IsDevelopment()) app.UseDeveloperExceptionPage();

app.UseHoyoResponseTime();
...
  • API 响应结果示例
{
  "statusCode": 200,
  "msg": "success",
  "data": [
    {
      "date": "2021-10-10 17:38:16",
      "temperatureC": 6,
      "temperatureF": 42,
      "summary": "Freezing"
    },
    {
      "date": "2021-10-11 17:38:16",
      "temperatureC": 18,
      "temperatureF": 64,
      "summary": "Warm"
    }
  ]
}
  • Response headers
hoyo-response-time: 5 ms
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
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
4.25.820.100 96 8/20/2025
4.25.814.175 119 8/14/2025
4.25.731.155 107 7/31/2025
4.25.724.1 493 7/23/2025
4.25.720.80 191 7/20/2025
4.25.716.42 138 7/15/2025
4.25.617.153 146 6/17/2025
4.25.616.190 142 6/16/2025
4.25.616.182 136 6/16/2025
4.25.613.111 280 6/13/2025
4.25.609.190 260 6/9/2025
3.24.1125.181 118 11/25/2024
3.24.1125.104 122 11/25/2024
3.24.1121.183 119 11/21/2024
3.24.1120.183 122 11/20/2024
3.24.1119.31 121 11/18/2024
3.24.1115.143 119 11/15/2024
3.24.1113.100 134 11/13/2024
3.24.1112.125 126 11/12/2024
3.24.1107.140 125 11/7/2024
3.24.1107.54 123 11/7/2024
3.24.1107.34 120 11/7/2024
3.24.1105.111 128 11/5/2024
3.24.1103.31 138 11/2/2024
3.24.1103 144 11/2/2024
3.24.1031.135 137 10/31/2024
3.24.1031.112 129 10/31/2024
3.24.1031.104 128 10/31/2024
3.24.1029.142 141 10/29/2024
3.24.1025.30 135 10/24/2024
3.24.1022.142 125 10/22/2024
3.24.1018.204 188 10/18/2024
3.24.1018.175 176 10/18/2024
3.24.1018.166 171 10/18/2024
3.24.1018.93 194 10/18/2024
3.24.1017.42 133 10/16/2024
3.24.1016.161 132 10/16/2024
3.24.1015.231 132 10/15/2024
3.24.1015.14 145 10/14/2024
3.24.1012.114 137 10/12/2024
3.24.1009.115 135 10/9/2024
3.24.1008.160 130 10/8/2024
3.24.1008.133 131 10/8/2024
3.24.1007.185 136 10/7/2024
3.24.1003.33 142 10/2/2024
3.24.1002.162 134 10/2/2024
3.24.929.143 135 9/29/2024
3.24.929.141 144 9/29/2024
3.24.929.131 125 9/29/2024
3.24.929.122 136 9/29/2024
3.24.926.184 145 9/26/2024
3.24.926.182 134 9/26/2024
3.24.926.175 146 9/26/2024
3.24.924.160 133 9/24/2024
3.24.924.133 148 9/24/2024
3.24.924.124 138 9/24/2024
3.24.924.10 135 9/23/2024
3.24.924.1 135 9/23/2024
3.24.923.234 143 9/23/2024
3.24.923.232 131 9/23/2024
3.24.923.155 136 9/23/2024
3.24.919.92 143 9/19/2024
3.24.914.125 131 9/14/2024
3.24.914.115 137 9/14/2024
3.24.914.111 136 9/14/2024
3.24.911.95 168 9/11/2024
3.24.908.215 145 9/8/2024
3.24.904.200 147 9/4/2024
3.24.828.163 144 8/28/2024
3.24.820.173 147 8/20/2024
3.24.814.92 156 8/14/2024
3.24.812.115 170 8/12/2024
3.24.802.100 143 8/2/2024
3.24.801.162 136 8/1/2024
3.24.801.160 137 8/1/2024
3.24.730.164 120 7/30/2024
3.24.730.91 132 7/30/2024
3.24.724.91 132 7/24/2024
3.24.718.105 159 7/18/2024
3.24.716.95 144 7/16/2024
3.24.712.94 144 7/12/2024
3.24.710.14 156 7/9/2024
3.24.709.105 175 7/9/2024
3.24.704.94 160 7/4/2024
3.24.701.90 159 7/1/2024
3.24.628.114 181 6/28/2024
3.24.627.145 150 6/27/2024
3.24.620.160 162 6/20/2024
3.24.613.115 149 6/13/2024
3.24.612.95 147 6/12/2024
3.24.528.90 143 5/28/2024
3.24.522.84 162 5/22/2024
3.24.512.213 139 5/12/2024
3.24.508.112 167 5/8/2024
2.2024.428.71 159 4/28/2024
2.2024.427.1128 148 4/27/2024
2.2.72 165 4/14/2024
2.2.71 151 4/12/2024
2.2.8 159 4/26/2024
2.2.6 155 4/10/2024
2.2.5 179 3/26/2024
2.2.4 163 3/25/2024
2.2.3 163 3/24/2024
2.2.2 190 3/21/2024
2.2.1 180 3/20/2024
2.2.0 169 3/13/2024
2.1.9 188 2/21/2024
2.1.8 170 2/18/2024
2.1.7 157 2/16/2024
2.1.6 173 2/14/2024
2.1.5 151 2/14/2024
2.1.4 213 2/9/2024
2.1.3 203 2/8/2024
2.1.2 194 2/5/2024
2.1.1.2 274 12/26/2023
2.1.1.1 175 12/26/2023
2.1.1 209 12/25/2023
2.1.0 217 12/17/2023
2.0.11 259 12/6/2023
2.0.1 245 11/15/2023
2.0.0 181 11/14/2023
1.9.1 192 11/1/2023
1.9.0 192 10/19/2023
1.9.0-preview2 386 10/12/2023
1.9.0-preview1 160 10/12/2023
1.8.9 251 10/11/2023
1.8.8 206 10/11/2023
1.8.7-rc2 168 9/21/2023
1.8.7-rc1 181 9/12/2023
1.8.6 246 8/31/2023
1.8.5 929 8/25/2023
1.8.4 246 8/24/2023
1.8.3 235 8/23/2023
1.8.2 302 8/22/2023
1.8.1 263 8/18/2023
1.8.0 264 8/15/2023
1.7.9 281 8/11/2023
1.7.8 211 8/11/2023
1.7.7 252 8/10/2023
1.7.6 259 8/9/2023
1.7.5 291 8/9/2023
1.7.4 349 8/3/2023
1.7.3 258 8/1/2023
1.7.2 232 7/31/2023
1.7.1 231 7/27/2023
1.7.0 245 7/25/2023
1.6.9 258 7/25/2023
1.6.8 253 7/24/2023
1.6.7 268 7/20/2023
1.6.6 254 7/19/2023
1.6.5 247 7/19/2023
1.6.4 254 7/17/2023
1.6.3 215 7/17/2023
1.6.2 317 7/12/2023
1.6.1 306 6/30/2023
1.6.0 223 6/26/2023
1.5.9 250 6/22/2023
1.5.8 277 6/15/2023
1.5.7.1 261 6/14/2023
1.5.7 264 6/14/2023
1.5.6.2 310 6/7/2023
1.5.6.1 267 6/7/2023
1.5.6 250 6/7/2023
1.5.5.2 295 5/26/2023
1.5.5.1 282 5/26/2023
1.5.5 273 5/26/2023
1.5.4.4 249 5/25/2023
1.5.4.3 284 5/23/2023
1.5.4.2 369 5/17/2023
1.5.4.1 263 5/16/2023
1.5.4 352 5/11/2023
1.5.3 257 5/11/2023
1.5.2 278 5/10/2023
1.5.1 277 5/10/2023
1.5.0 328 5/6/2023
1.4.0 291 5/5/2023
1.3.9 341 4/23/2023
1.3.8.6 248 4/23/2023
1.3.8.5 251 4/21/2023
1.3.8.1 322 4/12/2023
1.3.8 258 4/11/2023
1.3.7 279 4/9/2023
1.3.6.3 361 4/1/2023
1.3.6.2 286 3/31/2023
1.3.6.1 291 3/31/2023
1.3.6 237 3/31/2023
1.3.5 253 3/30/2023
1.3.4.1 337 3/29/2023
1.3.4 282 3/28/2023
1.3.3 258 3/28/2023
1.3.2 287 3/26/2023
1.3.1 358 3/22/2023
1.3.0 289 3/21/2023
1.2.0 291 3/21/2023
1.1.0 296 3/17/2023
1.0.9 308 3/15/2023
1.0.8 309 3/15/2023
1.0.7 285 3/15/2023
1.0.6 296 3/13/2023
1.0.5 303 3/13/2023
1.0.4 277 3/13/2023
1.0.1 392 2/23/2023
1.0.0 324 2/20/2023