Castle.MicroKernel.Registration.PropertyKey
Represents a property key.
namespace Castle.MicroKernel.Registration
{
public class PropertyKey
{
public object Key { get; }
public Property Eq(object value);
public ServiceOverride Is(string componentName);
public ServiceOverride Is(Type componentImplementation);
public ServiceOverride Is<TComponentImplementation>();
}
}