vote up 1 vote down star

Here's my class:

[Serializable()]
    [XmlRootAttribute("Language")]
    public class Language : ISerializable
    {
    	string Id {
    		get;
    		set;
    	}
    	string Part2B {
    		get;
    		set;
    	}
    	string Part2T {
    		get;
    		set;
    	}
    	string Part1 {
    		get;
    		set;
    	}
    	string Scope {
    		get;
    		set;
    	}
    	string LanguageType {
    		get;
    		set;
    	}
    	string RefName {
    		get;
    		set;
    	}
    	string Comment {
    		get;
    		set;
    	}

snipped

I'm returning an array of them from a Mono web service, like this:

[WebMethod()]
    	[ScriptMethod(ResponseFormat=ResponseFormat.Json)]
    	public Language[] GetLanguages()
    	{
    		List<Language> languages;
    		languages = GetLanguageList();
    		return languages.ToArray();
    	}

But what I get is this:

<?xml version="1.0" encoding="utf-8"?>
<ArrayOfLanguage xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://tempuri.org/">
  <Language />
  <Language />
  <Language />
  <Language />
</ArrayOfLanguage>

Why are the members not getting serialized?

flag

1 Answer

vote up 6 vote down check

Your properties are not public.
XmlSerialization only serialises public fields and properties.

XML serialization is the process of converting an object's public properties and fields to a serial format

The default accessibility for fields and properties (indeed all members) is private in c#.

Also implementing ISerializable has no effect on XmlSerialization (that would be IXmlSerializable).
Neither does the [Serializable] attribute, instead you need one or more of these.

link|flag
Duh! That'll teach me to code under the influence :) – Chris McCall Aug 30 at 7:56
:) It's a horrid mix to a hangover – ShuggyCoUk Aug 30 at 7:59
1  
Nor does [Serializable] ;-p – Marc Gravell Aug 30 at 8:03
I was throwing the kitchen sink at it to get it to work :) Thanks, gang, you're lifesavers :) – Chris McCall Aug 30 at 8:07
I miseed that too, thanks Marc, integrated – ShuggyCoUk Aug 30 at 8:08

Your Answer

Get an OpenID
or

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