I have an instance of System.Web.Services.WebService with a [WebMethod] returning an instance of class A. Class A is defined below. I would like the property a to be serialized but it is not. It seems only fields are serialized. Is there any way to force the property to be serialized?

public class A
{
    private string _a;
    public string a { get { return _a; } }
}
link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

Serialization requires that both the Setter and the Getter accessors are present.

public class MyClass
{
    public string A { get; set;}
}
link|improve this answer
Thanks. Any way to avoid using a "dummy" setter? – diolemo Nov 24 '11 at 13:47
Not sure what you mean with dummy setter. public string A {get; set;} actually expands to private string _a; public string A {get{return _a;} set{_a = value;}} – agarcian Nov 24 '11 at 17:31
dummy setter would be just set { } – diolemo Nov 24 '11 at 19:19
A dummy setter would allow you to serialize the class, but generally speaking, if you need to deserialize it, that particular property would obviously not have the value set during deserialization. – agarcian Nov 25 '11 at 4:09
feedback

Your Answer

 
or
required, but never shown

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