Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceCacheKey
namespace Microsoft.Extensions.DependencyInjection.ServiceLookup
{
internal readonly struct ServiceCacheKey : IEquatable<ServiceCacheKey>
{
public ServiceIdentifier ServiceIdentifier { get; }
public int Slot { get; }
public ServiceCacheKey(object key, Type type, int slot);
public ServiceCacheKey(ServiceIdentifier type, int slot);
public bool Equals(ServiceCacheKey other);
}
}