Tagged Questions

1
vote
1answer
65 views

C# web service serialization of object properties

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 ...
0
votes
1answer
42 views

Web Service Serialization

I'd like to create a class A_bis witch inherits from class A Some fields of class A are nullable ( [XmlElement(IsNullable = true)]) . Others not ... I'm interested in the others to become nullable ...