Castle.MicroKernel.ModelBuilder.Inspectors.PropertiesDependenciesModelInspector
This implementation of IContributeComponentModelConstruction
collects all potential writable public properties exposed by the component
implementation and populates the model with them.
The Kernel might be able to set some of these properties when the component
is requested.
namespace Castle.MicroKernel.ModelBuilder.Inspectors
{
public class PropertiesDependenciesModelInspector : IContributeComponentModelConstruction
{
public PropertiesDependenciesModelInspector(IConversionManager converter);
public virtual void ProcessModel(IKernel kernel, ComponentModel model);
protected virtual void InspectProperties(ComponentModel model);
}
}