在派生类型中找不到属性集方法
本文关键字:属性 方法 找不到 派生 类型 | 更新日期: 2023-09-27 18:30:26
正如在.NET Reflectionset私有属性中厌恶的那样,可以使用私有资源库设置属性。但是当属性在基类中定义时,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);
}
}
有谁知道解决这种情况的方法?
编辑:给出的示例是问题的简单说明。在实际场景中,我不知道该属性是在基类中定义的,还是在基类的基中定义的。
我遇到了类似的问题,我的私有财产是在基类中声明的。我使用 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);
}
}
我认为这将起作用:
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")
@LukeMcGregor的另一个选项是使用 BaseType
typeof(Derived)
.BaseType.GetProperty("ModifiedOn")
.SetValue(p, DateTime.Today, null);
我做了这个可重用的方法。它处理我的方案。
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;
}
}