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