Aspect oriented refers to the expression of event-driven programming through the use of callback functions or other means to respond to a local event that has global consequences without going through repetitive conditional checks or creating uneccessary dependencies between objects or subroutines.
2
votes
1answer
105 views
Logging and profiling - automatic logging through annotations
I am working with a little project intended to allow applications to benefit from aspect oriented programming. The first aspect is logging, which is already working. However I want this code to be ...
11
votes
1answer
257 views
Trampoline Interceptor
Aim
In C#, the following method will cause a StackOverFlowException if called with parameter 0:
...
7
votes
1answer
3k views
Inject dependency into PostSharp aspect
I have designed couple of aspects using PostSharp for different projects, but there is a design flaw in many of them: dependency management.
This is a question about injection of dependencies into ...