在练习 Adam Freeman 的《Pro ASP.NET Core》一书时,我注意到以下
MapGet("route", RequestDelegate)
方法的用法:
app.MapGet("endpoint/function",
async (HttpContext context, IResponseFormatter formatter) => {
await formatter.Format(context, "Endpoint Function: It is sunny in LA");
});
IResponseFormatter
在DI中注册为单例,但我很困惑为什么使用以下源代码请求委托
public delegate Task RequestDelegate(HttpContext context);
接受超出其定义的额外参数。
这里我发现这是可能的,但是当我尝试使用额外参数创建委托和函数时 - 它不起作用。
所以在搜索过程中,我没有找到任何文档或文章,额外参数何时以及如何工作,为了正确使用它,请您提供任何文章或文档或任何解释?感谢您的关注。