<PackageReference Include="Castle.Windsor" Version="2.5.4" />

ComponentModel

public sealed class ComponentModel : GraphNode
Represents the collection of information and meta information collected about a component.
public const string SkipRegistration = "skip.registration"

public IConfiguration Configuration { get; set; }

Gets or sets the configuration.

Gets the constructors candidates.

public Type CustomComponentActivator { get; set; }

Gets or sets the custom component activator.

Gets the custom dependencies.

public Type CustomLifestyle { get; set; }

Gets or sets the custom lifestyle.

Dependencies are kept within constructors and properties. Others dependencies must be registered here, so the kernel (as a matter of fact the handler) can check them

public IDictionary ExtendedProperties { get; set; }

Gets or sets the extended properties.

public Type Implementation { get; set; }

Gets or sets the component implementation.

Gets or sets the strategy for inspecting public properties on the components

Gets the interceptors.

Gets the lifecycle steps.

public LifestyleType LifestyleType { get; set; }

Gets or sets the lifestyle type.

public string Name { get; set; }

Sets or returns the component key

Gets the parameter collection.

Gets the properties set.

public bool RequiresGenericArguments { get; set; }

Gets or sets a value indicating whether the component requires generic arguments.

public Type Service { get; set; }

Gets or sets the service exposed.

public ComponentModel(string name, Type service, Type implementation)

Constructs a ComponentModel

public void Requires(Predicate<PropertySet>[] selectors)

Requires the selected property dependencies.

public void Requires<D>()

Requires the property dependencies of type D.