Microsoft.Extensions.DependencyInjection.ServiceLookup.CallSiteFactory
namespace Microsoft.Extensions.DependencyInjection.ServiceLookup
{
internal sealed class CallSiteFactory : IServiceProviderIsService, IServiceProviderIsKeyedService
{
public CallSiteFactory(ICollection<ServiceDescriptor> descriptors);
public void Add(ServiceIdentifier serviceIdentifier, ServiceCallSite serviceCallSite);
public bool IsService(Type serviceType);
public bool IsKeyedService(Type serviceType, object key);
}
}