<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="9.0.0-preview.7.24405.7" />

FromKeyedServicesAttribute

Indicates that the parameter should be bound using the keyed service registered with the specified key.
using System; using System.Runtime.CompilerServices; namespace Microsoft.Extensions.DependencyInjection { [NullableContext(1)] [Nullable(0)] [AttributeUsage(AttributeTargets.Parameter)] public class FromKeyedServicesAttribute : Attribute { public object Key { get; } public FromKeyedServicesAttribute(object key) { Key = key; } } }