Castle.MicroKernel.Registration.Property
Represents a key/value pair.
namespace Castle.MicroKernel.Registration
{
public class Property
{
public object Key { get; }
public object Value { get; }
public Property(object key, object value);
public static PropertyKey ForKey(string key);
public static PropertyKey ForKey(Type key);
public static PropertyKey ForKey<TKey>();
public static implicit operator Dependency(Property item);
}
}