1 write to PreflightMaxAge
Microsoft.AspNetCore.Cors (1)
Infrastructure\CorsService.cs (1)
113result.PreflightMaxAge = policy.PreflightMaxAge;
4 references to PreflightMaxAge
Microsoft.AspNetCore.Cors (4)
Infrastructure\CorsResult.cs (2)
88builder.Append(PreflightMaxAge.HasValue ? 89PreflightMaxAge.Value.TotalSeconds.ToString(CultureInfo.InvariantCulture) : "null");
Infrastructure\CorsService.cs (2)
188if (result.PreflightMaxAge.HasValue) 190headers.AccessControlMaxAge = result.PreflightMaxAge.Value.TotalSeconds.ToString(CultureInfo.InvariantCulture);