12

我需要在运行时更改属性的参数。我将我的问题简化为简单的示例。

属性类:

    [AttributeUsage(AttributeTargets.Property)]
    public class MyAttribute : Attribute
    {
        public string Name { get; set; }
    }

具有带有属性的修饰属性的简单实体:

    public class MyEntity
    {
        [MyAttribute(Name="OldValue1")]
        public string Data1{ get; set; }

        [MyAttribute(Name = "OldValue2")]
        public string Data2 { get; set; }
    }

我创建了 MyEntity 类的实例。我可以更改对象属性的值,但不能更改对象实体上属性的属性名称值。可能吗?

对象实体上的属性值我可以使用这部分代码进行更改:

                entityProp.SetValue(entity,"NewData",null);

但我不如何更改对象实体上属性的属性名称的值

这不起作用:

attProp.SetValue(attribute,"NewData",null);

属性名称的值仍然是原始的。

这是所有测试代码。

    [TestMethod]
    public  void Test()
    {
        var entity = new MyEntity
                         {
                             Data1 = "OldData",
                             Data2 = "OldData"
                         };

        PropertyInfo[] entityProps = entity.GetType().GetProperties();

        foreach (var entityProp in entityProps)
        {
            var attribute = Attribute.GetCustomAttribute(entityProp, typeof (MyAttribute)) as MyAttribute;

            if (attribute != null)
            {
                //get attribute's property NAME
                PropertyInfo attProp= attribute.GetType().GetProperty("Name");

                //get entity property value
                var propertyValue = entityProp.GetValue(entity, null);

                //get attribute’s property NAME value
                var atributeNameValue = attProp.GetValue(entity, null);

                TestContext.WriteLine(string.Format("property name:{0} property value: {1} : atribute name value: {2}\n", 
                    entityProp.Name, propertyValue, atributeNameValue)); 

                //change values
                entityProp.SetValue(entity,"NewData",null);

                //how can I change value of property Name on object entity ?
                attProp.SetValue(attribute,"NewData",null);
                
            }

        }

        TestContext.WriteLine(string.Format("After change\n"));

        foreach (var entityProp in entityProps)
        {
            var attribute = Attribute.GetCustomAttribute(entityProp, typeof(MyAttribute)) as MyAttribute;

            if (attribute != null)
            {

                PropertyInfo attProp = attribute.GetType().GetProperty("Name");

                var propertyValue = entityProp.GetValue(entity, null);
                var atributeNameValue = attProp.GetValue(entity, null);

                TestContext.WriteLine(string.Format("property name:{0} property value: {1} : atribute name value: {2}\n",
                    entityProp.Name, propertyValue, atributeNameValue));
            }
        }
    }

已编辑:我删除了原始帖子并添加了非常简单的清晰示例。对不起

4

2 回答 2

12

您不能在运行时更改属性。它们嵌入到程序集的元数据中。您的方法正在更改特定实例的内部状态;但是当您再次加载该属性时,您将获得一个不同的实例。

于 2012-04-06T18:03:45.163 回答
5

这在反射中是不可能的,因为(如前所述)元数据是固定的。然而,TypeDescriptor 部分是可能的,它允许在运行时添加和替换属性,并提供完整的替代模型(TypeDescriptionProvider 等)。任何使用反射的代码都不会尊重这种方法,但任何使用 TypeDescriptor 的代码(最常见的是数据绑定和其他 UI 代码)都会注意到这些变化。

注意 TypeDescriptor 仅适用于每个类型/成员的每个属性类型之一;多实例属性没有得到很好的支持。

于 2012-04-06T18:14:45.227 回答