11 references to DescribeKeyed
Microsoft.Extensions.DependencyInjection.Abstractions (9)
ServiceDescriptor.cs (9)
439
return
DescribeKeyed
(typeof(TService), serviceKey, implementationFactory, ServiceLifetime.Transient);
472
return
DescribeKeyed
(typeof(TService), serviceKey, implementationFactory, ServiceLifetime.Transient);
505
return
DescribeKeyed
(service, serviceKey, implementationFactory, ServiceLifetime.Transient);
610
return
DescribeKeyed
(typeof(TService), serviceKey, implementationFactory, ServiceLifetime.Scoped);
643
return
DescribeKeyed
(typeof(TService), serviceKey, implementationFactory, ServiceLifetime.Scoped);
676
return
DescribeKeyed
(service, serviceKey, implementationFactory, ServiceLifetime.Scoped);
788
return
DescribeKeyed
(typeof(TService), serviceKey, implementationFactory, ServiceLifetime.Singleton);
823
return
DescribeKeyed
(typeof(TService), serviceKey, implementationFactory, ServiceLifetime.Singleton);
861
return
DescribeKeyed
(serviceType, serviceKey, implementationFactory, ServiceLifetime.Singleton);
Microsoft.Extensions.Http (2)
DependencyInjection\HttpClientKeyedLifetime.cs (2)
31
Client = ServiceDescriptor.
DescribeKeyed
(typeof(HttpClient), ServiceKey, CreateKeyedClient, lifetime);
32
Handler = ServiceDescriptor.
DescribeKeyed
(typeof(HttpMessageHandler), ServiceKey, CreateKeyedHandler, lifetime);