3 references to IsService
Microsoft.Extensions.DependencyInjection (3)
ServiceLookup\CallSiteFactory.cs (2)
652public bool IsService(Type serviceType) => IsService(new ServiceIdentifier(null, serviceType)); 654public bool IsKeyedService(Type serviceType, object? key) => IsService(new ServiceIdentifier(key, serviceType));
ServiceProvider.cs (1)
182System.Diagnostics.Debug.Assert(result is null || CallSiteFactory.IsService(serviceIdentifier));