0

我有以下财产:

public Func<EntityKey, string, Task<IList<MyProperty>>> RequestHandler { get; private set; }

我的类上还有一个构造函数,如下所示:

public RequestHandlerTasks(Func<EntityKey, string, IList<MyProperty>> handler)

如何操作传递给构造函数的“处理程序”,以便将其存储在“RequestHandler”属性中?

如果您还没有发现它,构造函数使用“IList”并且属性需要IList 的Task。

4

1 回答 1

2

目前尚不清楚语义是什么意思,但它可能很简单:

public RequestHandlerTasks(Func<EntityKey, string, IList<MyProperty>> handler)
{
    // Whenever the RequestHandler delegate is called, it will start a new task.
    RequestHandler = (arg1, arg2) =>
        Task.Factory.StartNew(() => handler(arg1, arg2));
}

这将编译- 它是否做你想要的是另一回事......

于 2012-05-09T13:47:47.573 回答