Tagged Questions

6
votes
2answers
421 views

Is AspectF (a Fluent Aspect Framework) an AOP-like design that can be used without much concern?

Omar Al Zabir is looking for "a simpler way to do AOP style coding". He created a framework called AspectF, which is "a fluent and simple way to add Aspects to your code". It is not true AOP, ...
3
votes
1answer
122 views

Replace Property Getter/Setter with Reflection or similar (no 3rd party libraries) in c#

I've got a property contained in a class for example public class Greeter { private Hashtable _data; public string HelloPhrase { get; set; } public Greeter(data) { _data = data; } ...
3
votes
1answer
319 views

PostSharp on assemblies I don't have source for

In the examples on their website, PostSharp has a demo of intercepting calls in main system assemblies. I have tried a few times to setup and replicate said intercept calls on assemblies I don't have ...
2
votes
1answer
280 views

C# AOP Method Interception on child method calls?

My AOP (C#) implementation always intercepts the first (public) method call but not subsequent methods called within the first intercepted method, is this a limitation with ContextBoundObject AOP ...