在派生类型中找不到属性集方法

时间:2012-04-06 09:15:55

标签: c# .net-3.5 propertyinfo

.NET Reflection set private property中所述,可以使用私人设定者设置属性。但是当在基类中定义属性时,抛出System.ArgumentException:“找不到属性集方法”。

一个例子可以是:

using System;
class Test
{
    public DateTime ModifiedOn { get; private set;}
}

class Derived : Test
{
}

static class Program
{
    static void Main()
    {
        Derived p = new Derived ();
        typeof(Derived).GetProperty("ModifiedOn").SetValue(
            p, DateTime.Today, null);
        Console.WriteLine(p.ModifiedOn);
    }
}

有没有人知道解决这种情况的方法?

编辑:给出的示例是问题的简单说明。在现实世界的场景中,我不知道属性是在基类中定义的,还是在基类的基础中定义的。

4 个答案:

答案 0 :(得分:20)

我有一个类似的问题,我的私有财产是在基类中声明的。我使用 DeclaringType 来获取定义属性的类的句柄。

using System;
class Test
{
    public DateTime ModifiedOn { get; private set;}
}

class Derived : Test
{
}

static class Program
{
    static void Main()
    {
        Derived p = new Derived ();

        PropertyInfo property = p.GetType().GetProperty("ModifiedOn");
        PropertyInfo goodProperty = property.DeclaringType.GetProperty("ModifiedOn");

        goodProperty.SetValue(p, DateTime.Today, null);

        Console.WriteLine(p.ModifiedOn);
    }
}

答案 1 :(得分:9)

我认为这会奏效:

using System;
class Test
{
    public DateTime ModifiedOn { get; private set;}
}

class Derived : Test
{
}

static class Program
{
    static void Main()
    {
        Derived p = new Derived ();
        typeof(Test).GetProperty("ModifiedOn").SetValue(
            p, DateTime.Today, null);
        Console.WriteLine(p.ModifiedOn);
    }
}

您需要从实际定义的类中获取属性定义,而不是派生类

修改

要在任何基类上选择它,您需要在所有父类中查找它。

这样的东西然后递归到基类,直到你碰到物体或找到你的财产

typeof(Derived ).GetProperties().Contains(p=>p.Name == "whatever")

答案 2 :(得分:7)

除了@ LukeMcGregor之外的另一个选择是使用BaseType

typeof(Derived)
    .BaseType.GetProperty("ModifiedOn")
    .SetValue(p, DateTime.Today, null);

答案 3 :(得分:5)

我制作了这种可重复使用的方法。它处理我的场景。

    private static void SetPropertyValue(object parent, string propertyName, object value)
    {
        var inherType = parent.GetType();
        while (inherType != null)
        {
            PropertyInfo propToSet = inherType.GetProperty(propertyName, BindingFlags.Public | BindingFlags.Instance);
            if (propToSet != null && propToSet.CanWrite)
            {
                propToSet.SetValue(parent, value, null);
                break;
            }

            inherType = inherType.BaseType;
        }
    }