6 references to GetImplementationType
Microsoft.Extensions.DependencyInjection (6)
DependencyInjectionEventSource.cs (1)
250builder.Append(descriptor.GetImplementationType());
ServiceLookup\CallSiteFactory.cs (3)
42Type? implementationType = descriptor.GetImplementationType(); 396callSite = CreateConstructorCallSite(lifetime, serviceIdentifier, descriptor.GetImplementationType()!, callSiteChain); 428Type? implementationType = descriptor.GetImplementationType();
ServiceLookup\ServiceDescriptorExtensions.cs (2)
15public static bool HasImplementationType(this ServiceDescriptor serviceDescriptor) => GetImplementationType(serviceDescriptor) != null; 41type = GetImplementationType(serviceDescriptor);