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

DependencyModel

public class DependencyModel
Represents a dependency (other component or a fixed value available through external configuration).
public object DefaultValue { get; }

public string DependencyKey { get; set; }

Gets or sets the dependency key.

public bool HasDefaultValue { get; }

public bool IsOptional { get; set; }

Gets or sets whether this dependency is optional.

public bool IsValueType { get; }

public ParameterModel Parameter { get; }

public string Reference { get; }

public Type TargetItemType { get; }

Gets the service type of the dependency. This is the same type as TargetType or if TargetType is by ref, then it's the element type of the reference. (in other words if dependency is out IFoo foo this will be IFoo, while TargetType will be &IFoo);

public Type TargetType { get; }

Gets the type of the target.

public DependencyModel(string dependencyKey, Type targetType, bool isOptional)

Initializes a new instance of the DependencyModel class.

public DependencyModel(string dependencyKey, Type targetType, bool isOptional, bool hasDefaultValue, object defaultValue)

public IHandler GetHandler(IKernel kernel)

Gets handler for the dependency, or null if dependency is not satisfied by a component from a container or a handler was not found

public void Init(ParameterModelCollection parameters)