Click here to Skip to main content
15,883,883 members
Articles / Desktop Programming / WPF

Extending Castle DynamicProxy

Rate me:
Please Sign up or sign in to vote.
4.00/5 (1 vote)
8 May 2010CPOL7 min read 25.7K   183   12  
Shows how to extend the proxy generated by this framework by using Reflection.Emit.
using System;
using System.Collections.Generic;
using System.Linq;
using Castle.DynamicProxy;
using Castle.DynamicProxy.Generators;
using Castle.DynamicProxy.Contributors;

namespace Castle.ExtensibleDynamicProxy
{
    public class ExtensibleInterfaceProxyWithTargetGenerator : InterfaceProxyWithTargetGenerator
    {
        public ExtensibleInterfaceProxyWithTargetGenerator(ModuleScope scope, Type theInterface, ExtensibleProxyBuilder proxyBuilder)
            : base(scope, theInterface)
		{
            _proxyBuilder = proxyBuilder;
		}

        ExtensibleProxyBuilder _proxyBuilder;

        protected override IEnumerable<Type> GetTypeImplementerMapping(Type[] interfaces, Type proxyTargetType, out IEnumerable<ITypeContributor> contributors, INamingScope namingScope)
        {
            IEnumerable<ITypeContributor> contr;
            var ret = base.GetTypeImplementerMapping(interfaces, proxyTargetType, out contr, namingScope);
            var list = contr.ToList();
            list.AddRange(_proxyBuilder.Contributors);
            contributors = list;
            return ret;
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Brazil Brazil
Software developer specialized in the .NET framework

Comments and Discussions