1 write to PreflightMaxAge
Microsoft.AspNetCore.Cors (1)
Infrastructure\CorsPolicyBuilder.cs (1)
197_policy.PreflightMaxAge = preflightMaxAge;
5 references to PreflightMaxAge
Microsoft.AspNetCore.Cors (5)
Infrastructure\CorsPolicy.cs (2)
156builder.Append(PreflightMaxAge.HasValue ? 157PreflightMaxAge.Value.TotalSeconds.ToString(CultureInfo.InvariantCulture) : "null");
Infrastructure\CorsPolicyBuilder.cs (2)
253if (policy.PreflightMaxAge.HasValue) 255SetPreflightMaxAge(policy.PreflightMaxAge.Value);
Infrastructure\CorsService.cs (1)
113result.PreflightMaxAge = policy.PreflightMaxAge;