我有一个ConfigurationReader
类,我正在尝试使用 StructureMap 或 AutoFac 进行连接(我还没有确定我正在使用哪个容器)。
public class ConfigurationReader {
private string _filePath;
public ConfigurationReader(string filePath){
this._filePath = filePath;
}
public IList<Baz> ListStuff(){
//do something with _filePath;
}
}
根据应用程序的配置方式,此类的实例将有 1..n 个(web.config 将包含一个分隔的文件列表)。我正在寻找任何一个 IoC 容器中的扩展点,它允许我利用它们来创建ConfigurationReader
.