判断Ninject约定绑定是否失败

时间:2015-01-12 20:59:25

标签: c# ninject ninject-conventions

我正在使用Ninject.Extensions.Conventions动态添加绑定。要加载的.dll名称存储在配置中。如果配置不正确并且无法加载.dll,那么最好知道这一点。目前任何加载.dll的失败都不会冒泡。例如,如果我尝试加载马铃薯,那么我就无法捕获错误:

foreach (var customModule in customModuleConfigs)
{
    KeyValuePair<string, KVP> module = customModule;

    _kernel.Bind(scanner => scanner
        .From(module.Value.Value)
        .SelectAllClasses().InheritedFrom<ICamModule>()
        .BindAllInterfaces());

    // I need to know this failed
    _kernel.Bind(scanner => scanner
        .From("potato")
        .SelectAllClasses().InheritedFrom<ICamModule>()
        .BindAllInterfaces());
}

有没有办法知道我配置错误?在IntelliTrace窗口中,我看到一个异常抛出但在它冒泡之前被捕获。

2 个答案:

答案 0 :(得分:1)

您可以在AllInterfacesBindingGenerator类周围创建一个包装器,并使用它来计算生成的绑定:

public class CountingInterfaceBindingGenerator : IBindingGenerator
{
    private readonly IBindingGenerator innerBindingGenerator;

    public CountingInterfaceBindingGenerator()
    {
        this.innerBindingGenerator =
            new AllInterfacesBindingGenerator(new BindableTypeSelector(), new SingleConfigurationBindingCreator());
    }

    public int Count { get; private set; }

    public IEnumerable<IBindingWhenInNamedWithOrOnSyntax<object>> CreateBindings(Type type, IBindingRoot bindingRoot)
    {
        this.Count++;

        return this.innerBindingGenerator.CreateBindings(type, bindingRoot);
    }
}

用法:

var kernel = new StandardKernel();
var bindingGenerator = new CountingInterfaceBindingGenerator();

kernel.Bind(b =>
{
    b.From("potato")
        .SelectAllClasses()
        .InheritedFrom<ICamModule>()
        .BindWith(bindingGenerator);
});

if (bindingGenerator.Count == 0)
    // whatever

这可能比您当前的代码长,但它可以进一步自定义已创建的绑定。

答案 1 :(得分:1)

您需要自己加载程序集,然后可以控制是否抛出异常。使用

From(params Assembly[] assemblies)超载。

使用Assembly.LoadFrom()Assembly.Load

加载程序集