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

DependencyModel

public class DependencyModel
Represents a dependency (other component or a fixed value available through external configuration).

protected string reference

public object DefaultValue { get; set; }

The default value of this dependency. Note that null is a valid default value. Use HasDefaultValue to determine whether default value was provided.

public string DependencyKey { get; set; }

Gets or sets the dependency key.

public bool HasDefaultValue { get; set; }

Specifies whether dependency has a default value ( DefaultValue). Note that null is a valid default value.

public bool IsOptional { get; set; }

Gets or sets whether this dependency is optional.

public bool IsPrimitiveTypeDependency { get; }

public ParameterModel Parameter { get; set; }

public string ReferencedComponentName { 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 virtual void Init(ParameterModelCollection parameters)