DependencyNameAttribute
When a parameter is marked with this attribute, the container will pass the given dependency's name to it.
using System;
namespace Stashbox.Attributes
{
[AttributeUsage(AttributeTargets.Parameter)]
public class DependencyNameAttribute : Attribute
{
}
}