I am attempting to implement a WPF ViewModel using Castle Windsor Dynamic Proxies.The idea is that I want to supply an interface (IPerson below should suffice as an example), a concrete backing class,
I have two types of interceptors: LoggingWithDebugInterceptor and LoggingInterceptor. I am using the Castle Logging Facility and I am wondering how to write a selector that registers an interceptor on
I\'m trying to start taking advantage of Aspect-Oriented programming for repetitive tasks.I\'m not sure how to go about separating concerns.I\'m using C# and for A开发者_高级运维OP I\'m using Castle.D
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 specif
I just start using DynamicProxy2 today. And found it caused significant performance drop. See the code below. Test1 is 10 times slower than Test2.
I\'m trying to log calls from the UI (DNN module) to some of various services it uses, in a effort to profile how people are interacting with the site. I\'m using StructureMap 2.5.3.0 and Log4Net
Using Castle Windsor for DI, I\'ve two classes that implement the same interface; and besides that have some methods and properties of their own. I\'m using Castle DynamicProxy and created an Intercep
I\'m doing some project in Castle Windsor and I have some problems with interceptor hook in config file
I\'m looking for the easiest way to check if a开发者_C百科 method on my proxy has been auto-implemented by DynamicProxy. That is, let\'s say when registering my component, I added some AdditionalInter
Suppose we have an interface ICat that is derived from ICatBase and ICatExtension as shown below. For both distinct interfaces, an implementation is available, CatBase and CatExtension. How can Castle