11 references to DescribeKeyed
Microsoft.Extensions.DependencyInjection.Abstractions (9)
ServiceDescriptor.cs (9)
461return DescribeKeyed(typeof(TService), serviceKey, implementationFactory, ServiceLifetime.Transient); 494return DescribeKeyed(typeof(TService), serviceKey, implementationFactory, ServiceLifetime.Transient); 527return DescribeKeyed(service, serviceKey, implementationFactory, ServiceLifetime.Transient); 632return DescribeKeyed(typeof(TService), serviceKey, implementationFactory, ServiceLifetime.Scoped); 665return DescribeKeyed(typeof(TService), serviceKey, implementationFactory, ServiceLifetime.Scoped); 698return DescribeKeyed(service, serviceKey, implementationFactory, ServiceLifetime.Scoped); 810return DescribeKeyed(typeof(TService), serviceKey, implementationFactory, ServiceLifetime.Singleton); 845return DescribeKeyed(typeof(TService), serviceKey, implementationFactory, ServiceLifetime.Singleton); 883return DescribeKeyed(serviceType, serviceKey, implementationFactory, ServiceLifetime.Singleton);
Microsoft.Extensions.Http (2)
DependencyInjection\HttpClientKeyedLifetime.cs (2)
31Client = ServiceDescriptor.DescribeKeyed(typeof(HttpClient), ServiceKey, CreateKeyedClient, lifetime); 32Handler = ServiceDescriptor.DescribeKeyed(typeof(HttpMessageHandler), ServiceKey, CreateKeyedHandler, lifetime);