1 implementation of ICorsService
Microsoft.AspNetCore.Cors (1)
Infrastructure\CorsService.cs (1)
17
public class CorsService :
ICorsService
15 references to ICorsService
Microsoft.AspNetCore.Cors (10)
CorsServiceCollectionExtensions.cs (1)
25
services.TryAdd(ServiceDescriptor.Transient<
ICorsService
, CorsService>());
Infrastructure\CorsMiddleware.cs (7)
27
/// <param name="corsService">An instance of <see cref="
ICorsService
"/>.</param>
31
ICorsService
corsService,
41
/// <param name="corsService">An instance of <see cref="
ICorsService
"/>.</param>
46
ICorsService
corsService,
64
/// <param name="corsService">An instance of <see cref="
ICorsService
"/>.</param>
69
ICorsService
corsService,
84
private
ICorsService
CorsService { get; }
Infrastructure\CorsResult.cs (1)
10
/// Results returned by <see cref="
ICorsService
"/>.
Infrastructure\CorsService.cs (1)
15
/// Default implementation of <see cref="
ICorsService
"/>.
Microsoft.AspNetCore.Mvc.Cors (5)
CorsAuthorizationFilter.cs (5)
18
private readonly
ICorsService
_corsService;
25
/// <param name="corsService">The <see cref="
ICorsService
"/>.</param>
27
public CorsAuthorizationFilter(
ICorsService
corsService, ICorsPolicyProvider policyProvider)
35
/// <param name="corsService">The <see cref="
ICorsService
"/>.</param>
39
ICorsService
corsService,