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