Click here to Skip to main content
15,896,912 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.8K   183   12  
Shows how to extend the proxy generated by this framework by using Reflection.Emit.
using System;
using System.Collections.Generic;
using System.ComponentModel.Design;
using System.Reflection;
using System.ComponentModel;

namespace PresentationModelBase
{
    //this service provider will try to create an instance of 
    //the requested service by using some pre-registered 
    //implementations or if the serviceType is a concrete implementation
    //it will use activator to create an instance of it
    internal class ServiceCreator : IServiceProvider
    {
        public ServiceCreator()
        {
            _preRegistered = new Dictionary<Type, Type> 
            {
                { typeof(ICustomActionPresentationModel), typeof(CustomActionPresentationModel) },
                { typeof(ICollection<>), typeof(BindingList<>) }         
            };
        }

        Dictionary<Type, Type> _preRegistered = new Dictionary<Type, Type>();

        #region IServiceProvider Members

        public object GetService(Type serviceType)
        {
            if (serviceType.IsClass && !serviceType.IsAbstract)
            {
                return Activator.CreateInstance(serviceType);
            }
            else
            {
                if (serviceType.IsGenericType)
                {
                    if (!_preRegistered.ContainsKey(serviceType))
                    {
                        Type genericTypeDefInterface = serviceType.GetGenericTypeDefinition();
                        if (_preRegistered.ContainsKey(genericTypeDefInterface))
                        {
                            Type[] typeParameters = serviceType.GetGenericArguments();
                            Type genericTypeDef = _preRegistered[genericTypeDefInterface];
                            Type constructedType = genericTypeDef.MakeGenericType(typeParameters);
                            return Activator.CreateInstance(constructedType);
                        }
                    }
                    else
                    {
                        Type impl = _preRegistered[serviceType];
                        return Activator.CreateInstance(impl);
                    }
                }
            }
            return null;
        }

        #endregion
    }

}

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