vote up 0 vote down star

I have some XML that I am de-serializing and all works fine apart from one of my properties in the serialized class is also a class for example; Person.Address.Postcode.

Address is a property in Person class but Address is a class with properties such as Postcode.

If the incoming XML does not contain Address information and deserialization takes place when I look at Person.Address this is null.

What I would like to happen is for Person.Address not to be null and have things like Postcode not null but empty strings.

I have tried the IsNullable=false attribute on the Address property but that does not work.

How is this possible?

flag

79% accept rate

2 Answers

vote up 0 vote down check

You can make Postcode into a property that returns a String.Empty if it is not set, otherwise the value. Or make it impossible for it to be set to a null in the set block. Also you can make it impossible for Address to be null by making it into a struct. In which case you could set Postcode to String.Empty in the parameterless constructor. Or you can have your class implement IDeserializationCallback and in the method OnDeserialization make your Address whatever you need.

private string _postcode;
public string Postcode 
{
    get
    {
        return  _postcode ?? String.Empty;
    }
    set
    {
        _postcode = value;
    }
}

or

private string _postcode = String.Empty;
public string Postcode 
{
    get
    {
        return  _postcode;
    }
    set
    {
        _postcode = value ?? String.Empty;
    }
}

I find the first option better because even if something inside the Address class sets it to null, it will never return null.

link|flag
How can I neatly modify the Postcode property (below) to what you are suggesting public string Info { get; set; } – Jon Oct 19 at 12:26
vote up 0 vote down

If you are using DataContract, just use the OnDesrialized Attribiute (or OnDeserializing, or whatever you like), on some method, in which specify what you want to happen.

link|flag
there is no way to implement this functionality with the XmlSerializer – Jon Oct 19 at 13:05

Your Answer

Get an OpenID
or

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