11 references to DescribeKeyed
Microsoft.Extensions.DependencyInjection.Abstractions (9)
ServiceDescriptor.cs (9)
439return DescribeKeyed(typeof(TService), serviceKey, implementationFactory, ServiceLifetime.Transient); 472return DescribeKeyed(typeof(TService), serviceKey, implementationFactory, ServiceLifetime.Transient); 505return DescribeKeyed(service, serviceKey, implementationFactory, ServiceLifetime.Transient); 610return DescribeKeyed(typeof(TService), serviceKey, implementationFactory, ServiceLifetime.Scoped); 643return DescribeKeyed(typeof(TService), serviceKey, implementationFactory, ServiceLifetime.Scoped); 676return DescribeKeyed(service, serviceKey, implementationFactory, ServiceLifetime.Scoped); 788return DescribeKeyed(typeof(TService), serviceKey, implementationFactory, ServiceLifetime.Singleton); 823return DescribeKeyed(typeof(TService), serviceKey, implementationFactory, ServiceLifetime.Singleton); 861return 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);