0
맵과 맵을 사용할 때 요청을 인증하는 동안 asp.net 코어 미들웨어에서 분기합니다.지도와 MapWhen 지점 asp.net 코어 미들웨어의 차이점은 무엇입니까?
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
app.Map("", (appBuilder) =>
{
appBuilder.Run(async (context) => {
await context.Response.WriteAsync("");
});
});
app.MapWhen(context => context.Request.Query.ContainsKey(""), (appBuilder) =>
{
appBuilder.Run(async (context) =>
{
await context.Response.WriteAsync("");
});
});
}