本文整理匯總了C#中Ninject.StandardKernel.Invoking方法的典型用法代碼示例。如果您正苦於以下問題:C# StandardKernel.Invoking方法的具體用法?C# StandardKernel.Invoking怎麽用?C# StandardKernel.Invoking使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Ninject.StandardKernel
的用法示例。
在下文中一共展示了StandardKernel.Invoking方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: DefaultBinding_InstanciateMustThrow
public void DefaultBinding_InstanciateMustThrow()
{
using (var kernel = new StandardKernel())
{
kernel.Invoking(x => x.Get<InterceptedTarget>())
.ShouldThrow<InvalidOperationException>();
}
}
開發者ID:BrunoJuchli,項目名稱:ninject.extensions.staticproxy,代碼行數:8,代碼來源:When_class_is_not_bound_correctly.cs
示例2: Instanciating_ShouldNotThrow
public void Instanciating_ShouldNotThrow()
{
using (var kernel = new StandardKernel())
{
kernel.Bind<IProxy>().ToProxy(x => x.By(Mock.Of<IDynamicInterceptor>()));
kernel.Invoking(x => x.Get<IProxy>()).ShouldNotThrow();
}
}
示例3: Binding_MustThrow
public void Binding_MustThrow()
{
using (var kernel = new StandardKernel())
{
kernel.Invoking(x => x.Bind<INoProxy>().ToProxy(p => { }))
.ShouldThrow<InvalidOperationException>()
.Where(ex => ex.Message.Contains("[StaticProxy]")); // or maybe we could introduce a custom exception so we don't have to check the message's to make sure it's actually the "right" error case.
}
}
開發者ID:BrunoJuchli,項目名稱:ninject.extensions.staticproxy,代碼行數:9,代碼來源:When_there_is_no_proxy_implementation_for_interface.cs
示例4: Instanciating_MustThrow
public void Instanciating_MustThrow()
{
using (var kernel = new StandardKernel())
{
kernel.Bind<IProxy>().ToProxy(x => { });
kernel.Invoking(x => x.Get<IProxy>())
.ShouldThrow<InvalidOperationException>();
}
}
示例5: BoundToSelf_InstanciateMustThrow
public void BoundToSelf_InstanciateMustThrow()
{
using (var kernel = new StandardKernel())
{
kernel.Bind<InterceptedTarget>().ToSelf();
kernel.Invoking(x => x.Get<InterceptedTarget>())
.ShouldThrow<InvalidOperationException>();
}
}
開發者ID:BrunoJuchli,項目名稱:ninject.extensions.staticproxy,代碼行數:10,代碼來源:When_class_is_not_bound_correctly.cs