vote up 3 vote down star

Is it possible to modify the attribute of a property at runtime?

let's say I have some class:

public class TheClass
{
    [TheAttribute]
    public int TheProperty { get; set; }
}

Is there a way to do this?

if (someCondition)
{
    // disable attribute. Is this possible and how can this be done?
}
flag

Why? Perhaps it's better to set a value on that property so that it doesn't do what you want. Or is this for serialisation? – silky Sep 29 at 6:22
yep, for serialisation. – Natrium Sep 29 at 6:25
Right, so what are you trying to do? Stop a given field from being serialised? Or make it serialised on some basis? If it's either of those, you can always have two fields, one with '[NonSerialised]', that doesn't get saved, and when you decide it should, you set the 'other' one. But we'll need a bit more info on your exact reasoning for this. – silky Sep 29 at 6:29
ok, the user can check a checkbox if he wants TheProperty to be serialised or not. So, depending on the user's input, the attribute has to change. – Natrium Sep 29 at 6:34
Hmm. Well I'll be interested to see what Marc suggests; in lieu of that, though, how is the serialisation done? Is it custom xml? or are you just relying on the binary serialisation system? – silky Sep 29 at 6:39
show 3 more comments

6 Answers

vote up 2 vote down check

It depends; from a reflection perspective: no. You can't. But if you are talking about attributes used by System.ComponentModel in things like data-binding, they you can use TypeDescriptor.AddAttributes to append extra attributes. Or other customer models involving custom descriptors. So it depends on the use-case.


In the case of xml serialization, it gets more interesting. Firstly, we can use fun object models:

using System;
using System.Xml.Serialization;
public class MyData
{
    [XmlAttribute]
    public int Id { get; set; }
    [XmlAttribute]
    public string Name { get; set; }
    [XmlIgnore]
    public bool NameSpecified { get; set; }

    static void Main()
    {
        var ser = new XmlSerializer(typeof(MyData));

        var obj1 = new MyData { Id = 1, Name = "Fred", NameSpecified = true };
        ser.Serialize(Console.Out, obj1);
        Console.WriteLine();
        Console.WriteLine();
        var obj2 = new MyData { Id = 2, Name = "Fred", NameSpecified = false };
        ser.Serialize(Console.Out, obj2);
    }
}

The bool {name}Specified {get;set;} pattern (along with bool ShouldSerialize{name}()) is recognised and used to control which elements to include.

Another alternative is to use the non-default ctor:

using System;
using System.Xml.Serialization;
public class MyData
{
    [XmlAttribute]
    public int Id { get; set; }
    public string Name { get; set; }

    static void Main()
    {
        var obj = new MyData { Id = 1, Name = "Fred" };

        XmlAttributeOverrides config1 = new XmlAttributeOverrides();
        config1.Add(typeof(MyData),"Name",
            new XmlAttributes { XmlIgnore = true});
        var ser1 = new XmlSerializer(typeof(MyData),config1); 
        ser1.Serialize(Console.Out, obj);
        Console.WriteLine();
        Console.WriteLine();
        XmlAttributeOverrides config2 = new XmlAttributeOverrides();
        config2.Add(typeof(MyData), "Name",
            new XmlAttributes { XmlIgnore = false });
        var ser2 = new XmlSerializer(typeof(MyData), config2);
        ser2.Serialize(Console.Out, obj);
    }
}

Note though that if you use this second approach you need to cache the serializer instance, as it emits an assembly every time you do this. I find the first approach simpler...

link|flag
I'm talking about attributes to include/exclude some properties when serializing. – Natrium Sep 29 at 6:21
so, just by addinga property NameSpecified the xmlserializer knows whether he needs to serialize Name ? Or am I missing something? – Natrium Sep 29 at 11:59
vote up 5 vote down

No this is not possible. You cannot modify attribute values from metadata, or metadata in general, at runtime

Strictly speaking the above is not true. There are certain APIs which do allow allow for some metadata generation and modification. But they are very scenario specific, (ENC, profiling, debugging) and should not be used in general purpose programs.

link|flag
vote up 1 vote down

Attributes are baked into code at compilation time. The only way you can define new attributes at run time is to generate new code at runtime (using Reflection.Emit, for example). But you cannot change the attributes of existing code.

link|flag
vote up 1 vote down

You can put Boolean variable in the class to disable/enable the property instead of disabling it at run time.

link|flag
vote up 0 vote down

Sounds like you want to consider implementing IXmlSerializable

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.