Tagged Questions
2
votes
1answer
88 views
how to use Ninject intercept using InterceptAttribute
I have a NinjectWebCommon as follow. I am unable to get the TimingInterceptor to trigger on the method that has "Timing" attribute set. It works fine if the intercetor is defined at the class level ...
1
vote
1answer
131 views
Ninject Conventions and Interception
I want to decorate my services with attributes for interception, and then have conventions based binding set the interceptors up for me. I don't want my attributes to inherit from the interception ...
2
votes
1answer
87 views
Ninject: How to use interception with conventions binding
My MVC 4 service has this binding:
kernel.Bind(Sub(x)
x.FromAssembliesMatching("*").
SelectAllClasses().
...
0
votes
1answer
113 views
ninject interceptor - helper methods
I have a simply interface:
public interface ITest
{
void Method1();
void Method2();
}
and implementation:
public class Test:ITest
{
public void Method1()
{
}
...
1
vote
1answer
149 views
Can I make ninject instantiate postsharp aspects?
I have an asp.net webapi project and I was to be able to do some aspect orientated programming on the methods within the controllers
[Audit("Getting all foos")]
public IEnumerable<Foo> GetAll()
...
3
votes
1answer
127 views
Method Interception, replace return value
We’re using Ninject.Extensions.Interception (LinFu if it matters) to do a few things and I want to know if its possible to return a value form the method being intercepted.
EG
A Call is made into ...
2
votes
1answer
275 views
AOP with Ninject Interception, Castle DynamicProxy and WPF window: Can't find XAML resource in DynamicProxy of window
In our real world application we defined an attribute that is used to enable logging in methods or classes (the usual AOP use case). When we apply this attribute to a WPF window class, objects of this ...
4
votes
2answers
448 views
Ninject Interception - breaking changes when porting to Ninject 3.0
I will describe my environment: I have Ninject + Ninject Interception Extension working to enable auto registration of interceptors for all methods, marked with a special attribute. It is a common AoP ...
1
vote
1answer
570 views
How to Manage Transactions with ninject and Nhibernate with Isessionfactory injected in repository
Hi I am pretty new versed with DI and IoC pattern . so please pardon if my mistakes prevail and please educate me .
public class LazySessionContext
{
private readonly ISessionFactoryImplementor ...
1
vote
1answer
393 views
Ninject with WCF and Interception (for AOP)
I've been trying to get the ninject working in wcf, using the wcf extension and the interception with dynamicproxy2 extension. I've basically created a Time attribute and have it all working in a ...
1
vote
1answer
816 views
How to set up an optional method interception with Ninject?
Suppose I have a class in which I want to sometimes* (but now always) intercept some (but not all) methods. The way I understand it, this can be done either with, say, InterceptAround() in my Ninject ...
0
votes
1answer
432 views
Ninject Interceptors class with parameters
Simple question... I want to use Ninject Interceptors to take care of my NFRs, however alot of my classes require arguments in the constructors. I read that they are looking at allowing constructors ...
6
votes
2answers
1k views
Ninject Intercept any method with certain attribute?
How can I get Ninject.Extensions.Interception to basically let me bind a specific interceptor to any method that has an attribute... psudocode:
Kernel.Intercept(context => ...
2
votes
1answer
235 views
Ninject Intercept all instances of class X
I am trying out various frameworks implementations for AOP and I am really liking Ninject, however there is one criteria I just cannot get working for the life of me.
I am trying to get it to use an ...
0
votes
1answer
746 views
AOP: Custom Model Binder Attribute using Ninject
In short: I am trying to create a custom model binder that will take in the type of user and get their id, then use a service class to retrieve the strongly typed object.
If there is a better way to ...
2
votes
1answer
393 views
Ninject: Possible to use injection constructor when type is being proxied for AoP?
I'm doing a project ground up using Ninject 2 and one question bugs me:
If you are to intercept methods on your type, you need to wrap it into proxy (castle dynamic proxy to be specific). Unless said ...
1
vote
1answer
567 views
Getting SNAP(AOP), NInject and ASP.Net MVC 3 working together
Has anyone got the SNAP AOP framework working with MVC 3 and Ninject.
The samples given when adding Snap using NuGet to an MVC 3 project don't specifcally work well with a previously added NInject ...
3
votes
2answers
2k views
Ninject Interception Extension (AOP) - Good working example/tutorial?
I've been having a very difficult time finding an easy to follow tutorial or example of using the interception extension with Ninject, or ideally, a working example.
I've tried the below tutorial, ...
1
vote
1answer
895 views
Ninject AOP - getting method parameters from intercepted method
Does anyone know of a way to get hold of the intercepted parameters sent into a method.
For instance...
You have an Update method inside a CustomerService like this.. Update(Customer c)
..and you ...
