<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="9.0.0-rc.2.24473.5" />

IServiceProviderIsKeyedService

Provides methods to determine if the specified type with the specified service key is available from the IServiceProvider.
using System; using System.Runtime.CompilerServices; namespace Microsoft.Extensions.DependencyInjection { public interface IServiceProviderIsKeyedService : IServiceProviderIsService { [NullableContext(1)] bool IsKeyedService(Type serviceType, [Nullable(2)] object serviceKey); } }