gpt4 book ai didi

c# - 如何获取作为 func 传递的匿名方法的参数值?

转载 作者:行者123 更新时间:2023-11-30 23:20:23 26 4
gpt4 key购买 nike

我正在远程系统上调用方法。远程系统实现了一个接口(interface),两个系统都有一个副本(通过共享的 nuget 存储库)。目前我正在发送这样的请求:

var oldRequest = new FooRequest("GetEmployeeById", new object[] { "myPartner", 42, DateTime.Now.AddDays(-1) });

这是界面:

public class FooResponse<T> { }

public interface IFooController
{
FooResponse<string> GetEmployeeById(string partnerName, int employeeId, DateTime? ifModifiedSince);
}

正如您所想象的那样,有时程序员在构造函数中以错误的顺序将参数传递给数组,结果开始失败。为了解决这个问题,我创建了以下代码以在创建 FooRequest 时获得智能感知支持:

public static FooRequest Create<T>(Func<FooResponse<T>> func)
{
return new FooRequest(null, null); // Here goes some magic reflection stuff instead of null.
}

现在可以像这样创建一个 FooRequest:

public static IFooController iFooController => (IFooController)new object();
public static FooRequest CreateRequest<T>(Func<FooResponse<T>> func)
{
return FooRequest.Create(func);
}

var newRequest = CreateRequest(() => iFooController.GetEmployeeById("myPartner", 42, DateTime.Now.AddDays(-1)));

我的问题是:我如何才能在 FooRequest.Create 方法中获取方法名称和参数值?

我已经用尽了我的反射(reflection)和谷歌技能试图找到值(value),但到目前为止没有运气。

如果有人想试一试,可以在这里找到完整的编译代码:http://ideone.com/ovWseI

最佳答案

下面是如何使用表达式执行此操作的草图:

public class Test {
public static IFooController iFooController => (IFooController) new object();

public static FooRequest CreateRequest<T>(Expression<Func<FooResponse<T>>> func) {
return FooRequest.Create(func);
}

public static void Main() {
var newRequest = CreateRequest(() => iFooController.GetEmployeeById("myPartner", 42, DateTime.Now.AddDays(-1)));
Console.ReadKey();
}
}

public class FooRequest {
public static FooRequest Create<T>(Expression<Func<FooResponse<T>>> func) {
var call = (MethodCallExpression) func.Body;
var arguments = new List<object>();
foreach (var arg in call.Arguments) {
var constant = arg as ConstantExpression;
if (constant != null) {
arguments.Add(constant.Value);
}
else {
var evaled = Expression.Lambda(arg).Compile().DynamicInvoke();
arguments.Add(evaled);
}
}
return new FooRequest(call.Method.Name, arguments.ToArray());
}

public FooRequest(string function, object[] data = null) {
//SendRequestToServiceBus(function, data);
Console.Write($"Function name: {function}");
}
}

public class FooResponse<T> {
}

public interface IFooController {
FooResponse<string> GetEmployeeById(string partnerName, int employeeId, DateTime? ifModifiedSince);
}

关于c# - 如何获取作为 func 传递的匿名方法的参数值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39790282/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com