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

Automatic Implementation of INotifyPropertyChanged on POCO Objects

Rate me:
Please Sign up or sign in to vote.
4.92/5 (24 votes)
7 Jan 2011CPOL4 min read 115.6K   2.3K   63  
Implementing INotifyPropertyChanged automatically using a custom proxy generator
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace AutoNotifyPropertyChange
{
    public static class TypeFactory
    {
        public static Type AutoNotifier(Type t)
        {
            if (NothingToDo.With(t))
                return t;
            Prerequisites.ThrowIfNotSatisfiedBy(t);
            var influences = PropertyDependencyAnalyzer.GetPropertyInfluences(t);
            return ProxyGen.GetFor(t,influences);
        }
        public static Type AutoNotifier<T>()
        {
            return AutoNotifier(typeof(T));
        }
    }
}

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
Italy Italy
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions