How to set attributes values using reflection

前端 未结 3 1671
感动是毒
感动是毒 2020-11-29 13:01

I have a class decorated with a attribute ...[DataEntity(\"MESSAGE_STAGING\", EnableCaching = true, CacheTimeout = 43200)]

for some requirement,I want t

3条回答
  •  难免孤独
    2020-11-29 13:59

    If i understand you correctly, there is a possible way in reflection to change the attribute value of a instance at runtime.. checkout the sample code

            AttributeCollection ac  = TypeDescriptor.GetAttributes(yourObj);
    
            foreach (var att in ac)
            {
                //DataEntityAttribute  -- ur attribute class name
                DataEntityAttribute da = att as DataEntityAttribute ;
                Console.WriteLine(da.field1);  //initially it shows MESSAGE_STAGING
                da.field1= "Test_Message_Staging";  
             }
    
    
             //Check the changed value
            AttributeCollection acc = TypeDescriptor.GetAttributes(yourObj);
    
            foreach (var att in ac)
            {
                DataEntityAttribute da = att as DataEntityAttribute ;
                Console.WriteLine(da.field1); //now it shows Test_Message_Staging
            }
    

提交回复
热议问题