我有一个接口类:
public interface IStartUpTask
{
bool IsEnabled { get; }
void Configure();
}
我有多个实现相同接口的类
其中一个类如下所示:
public class Log4NetStartUpTask : IStartUpTask
{
public bool IsEnabled { get { return true; } }
public void Configure()
{
string log4netConfigFilePath = ConfigurationManager.AppSettings["log4netConfigFilePath"];
if (log4netConfigFilePath == null)
throw new Exception("log4netConfigFilePath configuration is missing");
if (File.Exists(log4netConfigFilePath) == false)
throw new Exception("Log4Net configuration file was not found");
log4net.Config.XmlConfigurator.Configure(
new System.IO.FileInfo(log4netConfigFilePath));
}
}
我如何告诉 Ninject 我希望所有实现 的类IStartUpTask
自动绑定到它们自己?
我找到了一个使用 StructureMap 执行此操作的示例,但我不知道如何在 Ninject 中执行此操作。
Scan(x => {
x.AssemblyContainingType<IStartUpTask>();
x.AddAllTypesOf<IStartUpTask>();
x.WithDefaultConventions();
});