6 references to TryAddScoped
Microsoft.AspNetCore.Identity.EntityFrameworkCore (3)
IdentityEntityFrameworkBuilderExtensions.cs (3)
70services.TryAddScoped(typeof(IUserStore<>).MakeGenericType(userType), userStoreType); 71services.TryAddScoped(typeof(IRoleStore<>).MakeGenericType(roleType), roleStoreType); 90services.TryAddScoped(typeof(IUserStore<>).MakeGenericType(userType), userStoreType);
Microsoft.AspNetCore.SignalR.Core (1)
SignalRDependencyInjectionExtensions.cs (1)
31services.TryAddScoped(typeof(IHubActivator<>), typeof(DefaultHubActivator<>));
Microsoft.Extensions.DependencyInjection.Abstractions (2)
Extensions\ServiceCollectionDescriptorExtensions.cs (2)
275TryAddScoped(collection, typeof(TService), typeof(TService)); 292TryAddScoped(collection, typeof(TService), typeof(TImplementation));