Ich versuche, die gemeinsame Nutzung von Cross-Origin-Ressourcen auf meiner ASP.NET Core-Web-API zu aktivieren, stecke jedoch fest.
Das EnableCors
Attribut akzeptiert policyName
vom Typ string
als Parameter:
// 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);
Was bedeutet das policyName
und wie kann ich CORS auf einer ASP.NET Core-Web-API konfigurieren ?