ASP.NET Core Web API에서 원본 간 리소스 공유를 활성화하려고하는데 문제가 있습니다.
EnableCors속성은 받아들이 policyName유형의 string매개 변수 :
// Summary:
// Creates a new instance of the Microsoft.AspNetCore.Cors.Core.EnableCorsAttribute.
//
// Parameters:
// policyName:
// The name of the policy to be applied.
public EnableCorsAttribute(string policyName);
ASP.NET Core Web API에서 CORS 를 policyName의미하는 방법과 의미 는 무엇입니까 ?



