EasilyNET.WebCore
1.3.8
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
The owner has unlisted this package.
This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package EasilyNET.WebCore --version 1.3.8
NuGet\Install-Package EasilyNET.WebCore -Version 1.3.8
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.3.8" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="EasilyNET.WebCore" Version="1.3.8" />
<PackageReference Include="EasilyNET.WebCore" />
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.3.8
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: EasilyNET.WebCore, 1.3.8"
#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.3.8
#: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.3.8
#tool nuget:?package=EasilyNET.WebCore&version=1.3.8
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
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 | Versions 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.
-
net6.0
- Swashbuckle.AspNetCore.SwaggerGen (>= 6.5.0)
-
net7.0
- Swashbuckle.AspNetCore.SwaggerGen (>= 6.5.0)
-
net8.0
- Swashbuckle.AspNetCore.SwaggerGen (>= 6.5.0)
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 |
|---|---|---|
| 6.26.114.102 | 86 | 1/14/2026 |
| 6.26.107.173 | 87 | 1/7/2026 |
| 5.25.1212.131 | 131 | 12/12/2025 |
| 5.25.1112.15 | 286 | 11/11/2025 |
| 4.25.1016.112 | 400 | 10/16/2025 |