DeepBlue.FunctionTime 1.0.0.5

dotnet add package DeepBlue.FunctionTime --version 1.0.0.5
NuGet\Install-Package DeepBlue.FunctionTime -Version 1.0.0.5
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="DeepBlue.FunctionTime" Version="1.0.0.5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add DeepBlue.FunctionTime --version 1.0.0.5
#r "nuget: DeepBlue.FunctionTime, 1.0.0.5"
#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 DeepBlue.FunctionTime as a Cake Addin
#addin nuget:?package=DeepBlue.FunctionTime&version=1.0.0.5

// Install DeepBlue.FunctionTime as a Cake Tool
#tool nuget:?package=DeepBlue.FunctionTime&version=1.0.0.5

1.CallingLogInterceptor.cs 拦截器
2.MethodOperationInfo.cs 操作日志
3.MyProxyGenerator.cs 代理类

调用方法
ITest t = MyProxyGenerator.CreateProxy<ITest, Test>();

/// <summary>执行后
       /// 主要把执行的结果集,输入的参数,该接口访问的耗时.记录到接口日记中.
       /// </summary>
       /// <param name="context"></param     
       public override void OnActionExecuted(ActionExecutedContext context)
       {
           string action = context.ActionDescriptor.RouteValues["action"];//方法
           string controller = context.ActionDescriptor.RouteValues["controller"];//控制名   
           string ReturnText = Newtonsoft.Json.JsonConvert.SerializeObject(errcode);//返回值
           Dictionary<string, MethodOperationInfo> dic = MethodOperationInfo.Print(); //获取此次请求完整方法
           Task<int> t1 = myLogNetDal.LogNetAdd(dic, controller, action,ReturnText);//异步 计划报表
       }

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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 was computed.  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 was computed.  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. 
.NET Core netcoreapp2.2 is compatible.  netcoreapp3.0 was computed.  netcoreapp3.1 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
1.0.0.5 590 12/24/2019
1.0.0.3 495 12/18/2019
1.0.0.1 464 12/18/2019
1.0.0 476 12/18/2019

修复 传入参数为模型数据时,方法参数将于JSON格式返回.接受数据模型嵌套