ExpandoObject使用“extra”-code添加属性

时间:2015-09-11 10:49:35

标签: c# expandoobject

我已经阅读了一些关于ExpandoObject的内容,我可以使用属性,字段和方法来扩展它。

//that's how to add a property to an ExpandoObject.
dynamic x = new ExpandoObject();
x.NewProp = string.Empty;

但有时候,添加带有“额外代码”的属性可能很方便。

class sample
{
    // a sample field.
    public string sampleString{get;set}
    // a sample property with some "extra code"
    private string s;
    public string sampleExtraString
    { 
         get{return s;}
         set{s=value;Console.WriteLine(s);}
    }
}

现在我的问题是,我如何向ExpandoObject添加一个属性,该属性将在set上执行我的Console.WriteLine(s);

2 个答案:

答案 0 :(得分:3)

ExpandoObject实施INotifyPropertyChanged,正如here所解释的那样 (在页面底部)

((INotifyPropertyChanged)x).PropertyChanged +=
        new PropertyChangedEventHandler(Expando_PropertyChanged);
    x.NewProp = string.Empty;


private static void Expando_PropertyChanged(object sender,
    PropertyChangedEventArgs e)
{
    Console.WriteLine("{0} has changed.", e.PropertyName);
}

答案 1 :(得分:1)

我认为更好的方法是使用DynamicObject,你可以拦截对方法和属性的调用 这是一个简单的例子,一个更健壮的例子不会使用反射来对属性执行set / get操作,而是使用reflection.Emit或任何编译的操作策略。

public class Sample
{
    public string SampleExtraString { get; set; }
}

public class Factory
{
    public class ExtraPropertyObject<T> : DynamicObject
    {
        private readonly T instance = default(T);
        private readonly Type instanceType = null;

        public ExtraPropertyObject(T instance) {
            this.instance = instance;
            instanceType = instance.GetType();
        }

        public override bool TrySetMember(SetMemberBinder binder, object value) {
            PropertyInfo prop = null;

            if (binder.Name.Equals("SampleExtraString")) {
                Console.WriteLine(value);
            }

            prop = instanceType.GetProperty(binder.Name);

            if (prop != null) {
                try {
                    prop.SetValue(instance, value);
                    return true;
                }
                catch (Exception ex) {

                }
            }

            return false;
        }

        public override bool TryGetMember(GetMemberBinder binder, out object result) {
            var prop = instanceType.GetProperty(binder.Name);

            if (prop != null) {
                try {
                    result = prop.GetValue(instance);
                    return true;
                }
                catch (Exception ex) {

                }
            }

            result = null;
            return false;
        }
    }

    public static dynamic CreateInstance<TInstance>() where TInstance : class, new() {
        return new ExtraPropertyObject<TInstance>(new TInstance());
    }

    public static dynamic CreateInstance<TInstance>(TInstance instance) {
        return new ExtraPropertyObject<TInstance>(instance);
    }
}

class Program
{
    static void Main(string[] args) {
        var instance = Factory.CreateInstance<Sample>();
        instance.SampleExtraString = "value";
        Console.WriteLine("Get Operation: {0}", instance.SampleExtraString);
    }
}