11 references to DescribeKeyed
Microsoft.Extensions.DependencyInjection.Abstractions (9)
ServiceDescriptor.cs (9)
461
return
DescribeKeyed
(typeof(TService), serviceKey, implementationFactory, ServiceLifetime.Transient);
494
return
DescribeKeyed
(typeof(TService), serviceKey, implementationFactory, ServiceLifetime.Transient);
527
return
DescribeKeyed
(service, serviceKey, implementationFactory, ServiceLifetime.Transient);
632
return
DescribeKeyed
(typeof(TService), serviceKey, implementationFactory, ServiceLifetime.Scoped);
665
return
DescribeKeyed
(typeof(TService), serviceKey, implementationFactory, ServiceLifetime.Scoped);
698
return
DescribeKeyed
(service, serviceKey, implementationFactory, ServiceLifetime.Scoped);
810
return
DescribeKeyed
(typeof(TService), serviceKey, implementationFactory, ServiceLifetime.Singleton);
845
return
DescribeKeyed
(typeof(TService), serviceKey, implementationFactory, ServiceLifetime.Singleton);
883
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);