1 implementation of IClaimsTransformation
Microsoft.AspNetCore.Authentication.Core (1)
NoopClaimsTransformation.cs (1)
11public class NoopClaimsTransformation : IClaimsTransformation
5 references to IClaimsTransformation
Microsoft.AspNetCore.Authentication.Core (5)
AuthenticationCoreServiceCollectionExtensions.cs (1)
25services.TryAddSingleton<IClaimsTransformation, NoopClaimsTransformation>(); // Can be replaced with scoped ones that use DbContext
AuthenticationService.cs (3)
23/// <param name="transform">The <see cref="IClaimsTransformation"/>.</param> 28IClaimsTransformation transform, 50public IClaimsTransformation Transform { get; }
AuthenticationServiceImpl.cs (1)
14IClaimsTransformation transform,