Tagged Questions

1
vote
2answers
753 views

Castle DynamicProxy2: Get the Target inside an Interceptor?

I'm using Castle DynamicProxy2 to "tack on" interfaces to retrieve fields from a dictionary. For example, given the following class: public class DataContainer : IDataContainer { private ...
0
votes
2answers
199 views

DynamicProxy2: CreateClassProxyWithTarget + IInterceptor

If I've missed this in another question I apologize; I looked for a good while before deciding I had a unique question... I want to use DynamicProxy2 to provide interception for a WPF application's ...