-
Notifications
You must be signed in to change notification settings - Fork 7
Component Resolution
Marty Mathis edited this page Aug 27, 2020
·
7 revisions
Pipelines are constructed using a set of components that are resolved using implementations of the following interface:
public interface IPipelineComponentResolver
{
T GetInstance<T>(string name) where T : IPipelineComponent;
}
The core framework only provides one implementation for IPipelineComponentResolver
out of the box, DictionaryPipelineComponentResolver
. If you would like to use a dependency injection (IOC) container for component resolution, please visit the Pipeline Framework Dependency Injection wiki page.