ASP.NET Core中使用的lambda配置模式的名称是什么?

时间:2019-06-11 14:26:13

标签: asp.net-core

在ASP.NET核心中,我们经常使用此模式来配置各种服务。

services.AddAuthentication().AddCookie(options =>
    {
        options.SlidingExpiration = true;
        options.Cookie.Domain = "example.com";
    }
);

使用lambda进行配置的特定样式/模式是否具有更正式的通用名称?

1 个答案:

答案 0 :(得分:0)

Builder和Option模式的组合。