11 references to DescribeKeyed
Microsoft.Extensions.DependencyInjection.Abstractions (9)
ServiceDescriptor.cs (9)
460return DescribeKeyed(typeof(TService), serviceKey, implementationFactory, ServiceLifetime.Transient); 493return DescribeKeyed(typeof(TService), serviceKey, implementationFactory, ServiceLifetime.Transient); 526return DescribeKeyed(service, serviceKey, implementationFactory, ServiceLifetime.Transient); 631return DescribeKeyed(typeof(TService), serviceKey, implementationFactory, ServiceLifetime.Scoped); 664return DescribeKeyed(typeof(TService), serviceKey, implementationFactory, ServiceLifetime.Scoped); 697return DescribeKeyed(service, serviceKey, implementationFactory, ServiceLifetime.Scoped); 809return DescribeKeyed(typeof(TService), serviceKey, implementationFactory, ServiceLifetime.Singleton); 844return DescribeKeyed(typeof(TService), serviceKey, implementationFactory, ServiceLifetime.Singleton); 882return 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);