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

ComponentModel

public sealed class ComponentModel : GraphNode
Represents the collection of information and meta information collected about a component.
public ComponentName ComponentName { get; }

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.

public Arguments CustomDependencies { get; }

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 Arguments ExtendedProperties { get; }

Gets or sets the extended properties.

public bool HasClassServices { get; }

public bool HasCustomDependencies { get; }

public bool HasInterceptors { get; }

public bool HasParameters { get; }

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 IEnumerable<Type> Services { get; }

public ComponentModel(ComponentName name, ICollection<Type> services, Type implementation, Arguments extendedProperties)

Constructs a ComponentModel

public ComponentModel()

public void AddConstructor(ConstructorCandidate constructor)

Adds constructor dependency to this ComponentModel

public void AddProperty(PropertySet property)

Adds property dependency to this ComponentModel

public void AddService(Type type)

Add service to be exposed by this ComponentModel

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

Requires the selected property dependencies.

public void Requires<D>()

Requires the property dependencies of type D .