2 implementations of IAuthenticationSchemeProvider
Microsoft.AspNetCore.Authentication.Core (1)
Microsoft.AspNetCore.Identity.Test (1)
96 references to IAuthenticationSchemeProvider
DynamicSchemes (2)
IISSample (1)
InProcessWebSite (2)
Microsoft.AspNetCore (1)
Microsoft.AspNetCore.Authentication (4)
Microsoft.AspNetCore.Authentication.Core (8)
Microsoft.AspNetCore.Authentication.Core.Test (25)
Microsoft.AspNetCore.Authentication.Test (17)
Microsoft.AspNetCore.Identity (2)
Microsoft.AspNetCore.Identity.Test (19)
SecurityStampValidatorTest.cs (6)
106contextAccessor.Object, claimsManager.Object, identityOptions.Object, null, new Mock<IAuthenticationSchemeProvider>().Object, new DefaultUserConfirmation<PocoUser>());
169contextAccessor.Object, claimsManager.Object, identityOptions.Object, null, new Mock<IAuthenticationSchemeProvider>().Object, new DefaultUserConfirmation<PocoUser>());
210contextAccessor.Object, claimsManager.Object, identityOptions.Object, null, new Mock<IAuthenticationSchemeProvider>().Object, new DefaultUserConfirmation<PocoUser>());
249contextAccessor.Object, claimsManager.Object, identityOptions.Object, null, new Mock<IAuthenticationSchemeProvider>().Object, new DefaultUserConfirmation<PocoUser>());
286contextAccessor.Object, claimsManager.Object, identityOptions.Object, null, new Mock<IAuthenticationSchemeProvider>().Object, new DefaultUserConfirmation<PocoUser>());
334contextAccessor.Object, claimsManager.Object, identityOptions.Object, null, new Mock<IAuthenticationSchemeProvider>().Object, new DefaultUserConfirmation<PocoUser>());
SignInManagerTest.cs (13)
48var helper = new SignInManager<PocoUser>(manager.Object, contextAccessor.Object, claimsFactory, options.Object, logger, new Mock<IAuthenticationSchemeProvider>().Object, new DefaultUserConfirmation<PocoUser>());
78var helper = new SignInManager<PocoUser>(manager.Object, contextAccessor.Object, claimsFactory, options.Object, logger, new Mock<IAuthenticationSchemeProvider>().Object, new DefaultUserConfirmation<PocoUser>());
100private static SignInManager<PocoUser> SetupSignInManager(UserManager<PocoUser> manager, HttpContext context, ILogger logger = null, IdentityOptions identityOptions = null, IAuthenticationSchemeProvider schemeProvider = null)
618null, null, new Mock<IAuthenticationSchemeProvider>().Object, null)
648null, logger, new Mock<IAuthenticationSchemeProvider>().Object, null)
672null, logger, new Mock<IAuthenticationSchemeProvider>().Object, null)
1096var schemeProvider = new Mock<IAuthenticationSchemeProvider>();
1127var schemeProvider = new Mock<IAuthenticationSchemeProvider>();
1159var schemeProvider = new Mock<IAuthenticationSchemeProvider>();
1341nameof(SignInManager<PocoUser>) => new SignInManager<PocoUser>(manager, contextAccessor.Object, claimsFactory, options, NullLogger<SignInManager<PocoUser>>.Instance, Mock.Of<IAuthenticationSchemeProvider>(), new DefaultUserConfirmation<PocoUser>()),
1356: base(userManager, contextAccessor, claimsFactory, optionsAccessor, NullLogger<SignInManager<TUser>>.Instance, Mock.Of<IAuthenticationSchemeProvider>(), new DefaultUserConfirmation<TUser>())
1368: base(userManager, contextAccessor, claimsFactory, optionsAccessor, NullLogger<SignInManager<TUser>>.Instance, Mock.Of<IAuthenticationSchemeProvider>(), new DefaultUserConfirmation<TUser>())
1385: base(userManager, contextAccessor, claimsFactory, optionsAccessor, NullLogger<SignInManager<TUser>>.Instance, Mock.Of<IAuthenticationSchemeProvider>(), new DefaultUserConfirmation<TUser>())
Microsoft.AspNetCore.Server.HttpSys (1)
Microsoft.AspNetCore.Server.IIS (1)
Microsoft.AspNetCore.Server.IISIntegration (4)
Microsoft.AspNetCore.Server.IISIntegration.Tests (4)
NativeIISSample (2)
Sample (1)
SocialSample (2)