All.

May be you know if the standard .net framework library / ms enterprise library contains something like this functionality:

IConvertible proxy = CodegenThatEverybodyNeed.CreateProxy<IConvertible>(
         new Func<TypeCode> {...}, 
         new Func<IFormatProvider,bool>{...} , ...
);

I'm petty sure that this task ("anonymous proxy") is common and it is clear that it is possible to have a run time realization, but do not imagine where I could meet this function...

P.S. Of course it is better to have design time realization with type checks, but I have no doubts this is impossible right now. P.P.S. "Well known" freeware libraries are also welcome.

ObejectBuilder It seems that ObjectBuilder should have this fucntionality but 15 minutes was not enough to understand how to learn it. http://msdn.microsoft.com/en-us/library/ff647453.aspx

May be somebody have nice sample?

EntLib Interceptions Also this code should be somewhere int Unit.Interceptions but I do not found how reuse it..

link|improve this question

62% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Have a look at Castle Dynamic Proxy.

link|improve this answer
Thank you. Unfortunately for my goals (to avoid customers panic) castle is too big (panic will be even stronger than after Emit end code generation on the fly). Need something from more "standard" source. – Roman Pokrovskij Oct 10 '11 at 7:31
what do you mean by 'too big'? the size of the DLL? – Adam Ralph Oct 10 '11 at 8:54
provided functionality is too large. – Roman Pokrovskij Oct 10 '11 at 15:58
by that measure, the .NET framework is also 'too large'. you don't have to use the bits you don't want. just use the bits you do want. – Adam Ralph Oct 10 '11 at 16:39
.NET Framework is already accepted by my customer as EntLib and some other extensions... – Roman Pokrovskij Oct 10 '11 at 17:03
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.