1 implementation of IsKeyedService
Microsoft.Extensions.DependencyInjection (1)
ServiceLookup\CallSiteFactory.cs (1)
654
public bool
IsKeyedService
(Type serviceType, object? key) => IsService(new ServiceIdentifier(key, serviceType));
2 references to IsKeyedService
Microsoft.AspNetCore.SignalR.Core (1)
Internal\HubMethodDescriptor.cs (1)
98
if (keyedServiceProvider.
IsKeyedService
(GetServiceType(p.ParameterType), keyedServicesAttribute.Key))
Microsoft.Extensions.DependencyInjection.Abstractions (1)
ActivatorUtilities.cs (1)
769
return serviceProviderIsKeyedService.
IsKeyedService
(parameterInfo.ParameterType, key);