Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I tried something like this:

    [NonSerialized]
    private string _DecodeText;
    public string DecodeText { get { return _DecodeText; } set { _DecodeText = value; } }

But it does not work. "DecodeText" is still in the serialized file. How can i prevent the property from serializing?

share|improve this question
What serialiser are you using? The NonSerialized attribute only works with BinaryFormatter or SoapFormatter – Russell Troywest Dec 6 '11 at 9:22
I'm using XmlSerializer and BinaryFormatter. I tried adding [XmlIgnore]. Same Problem. Then i tried adding [XmlIgnore] to the property. Works. Strange world... – Display Name Dec 6 '11 at 9:31
1  
Yes, The XmlSerialiser works on public Properties and public fields (if I remember correctly). Whereas the binary serialiser works on private and public fields so it would not have let you use that attribute on a property and the XmlSerialiser would not have let you use the XmlIgnore property on the private field. – Russell Troywest Dec 6 '11 at 9:35

3 Answers

I Suspect you're using the XmlSerializer? If so use the [XmlIgnore] attribute instead.

This should be applied to the property instead of the backing field as the XmlSerializer serializes public fields and properties (whereas the BinaryFormatter uses refelction to get at the private fields - hence the marking of the private field with NonSerialized when using a BinaryFormatter).

share|improve this answer

Updated Answer

The [NonSerialized] atttibute is on the variable not the property, but it cannot be on the attribute. So it is not going to help.

One way to prevent the property being serialized is to add a method

public bool ShouldSerializeDecodeText() {
   return false;
}

and this (for the XmlSerializer at least) will prevent the property being serialized.

If you don't want to add lots of methods to the class just for serialization you might try inheriting from it and adding the methods to the derived class.

hth, Alan.

share|improve this answer
I could be wrong but I don't think properties get serialized by the BinaryFormatter. Only fields. If they are using a different serialiser that attribute probably wont work. – Russell Troywest Dec 6 '11 at 9:24
[NonSerialized] does not work on Propertys! – Display Name Dec 6 '11 at 9:32
In fact, the NonSerialized attribute has an attribute of [AttributeUsageAttribute(AttributeTargets.Field, Inherited = false)] so I think adding it to a property would probably give you a compilation error. – Russell Troywest Dec 6 '11 at 9:33
My bad, just saw the attribute on the field and went 'Gotcha'. The attribute cannot go on properties and for some reason the XmlSerializer is not honoring it on the field either when I tested it. – AlanT Dec 6 '11 at 13:19
OK, better attempt. From stackoverflow.com/questions/1296468/… If you add a method bool ShouldSerializeDecodeText() returning false, it will not serialize the property. – AlanT Dec 6 '11 at 13:28

I was able to use the following and not have the property serialized (.NET 4.0):

private string _DecodeText;
[System.Xml.Serialization.XmlIgnore]
public string DecodeText { get { return _DecodeText; } set { _DecodeText = value; } }
share|improve this answer
1  
A bit late since the post of Russell Troywest has the same answer... 1 year ago ! ;) – JYL Dec 10 '12 at 16:16
1  
But he did not speak in code :) – John Jan 14 at 22:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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