Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
197 views

Rename serializable class

If i Serializable the following code using XmlSerializer. [XmlRoot("products")] public class Products : List<Product> { } public class Product { } I get the following xml ...
1
vote
1answer
249 views

Serializing class decorated with XmlRoot, error when used in List

When i try to serialize a class element of type Test, it gives an xml with root element as "testing" which is set using XmlRoot. But when I try to serialize an element of class Elems, Test element is ...
1
vote
1answer
792 views

Difference between using XMLRoot/XMLElement and using Serializable() attributes (in c#)

what is Difference between using XMLRoot/XMLElement and using Serializable() attributes? how do i know when to use each ?
0
votes
1answer
452 views

WCF, XmlRoot, and optional parameters

I have a WCF service and cannot use DataContracts since I need more control over the XML received and sent to this service. As such, I use XmlRoot, and XmlElement... the problem I'm running into now ...
0
votes
6answers
3k views

XmlSerializer Deserializing Array/List of Multiple Objects at Root

I'm trying to deserialize the following XML output: <?xml version="1.0" encoding="ISO-8859-1"?> <Foo> <Val>Data1</Val> </Foo> <Foo> ...
0
votes
3answers
430 views

XmlRoot() for Xml Serilization does not work

I'm trying to get my httphandler to print out an XML file with the format: <ScheduledShows> <ScheduledShowElement>...</ScheduledShowElement> ...