Questions tagged [xmlserializer]

Serializes and deserializes objects into and from XML documents. The XmlSerializer enables you to control how objects are encoded into XML.

Description in Docs

1432 questions
-2
votes
1 answer

Reading XML with records with different columns in same records array

I need to parse a XML response in C# and load in SQL. Just to brief,i know how to use XMLSerializer to parse the xml, so that is not i am looking for. My concern is my XML structure which i received from from web request. Below is the subset of xml,…
Mohit
  • 415
  • 2
  • 18
-2
votes
2 answers

How to manipulate an uncreated XML document through a class

I have to interact with a repository of documents, where each document is inserted with metadata contained in an XML document. Now, at some point, this metadata must be generated from scratch. I thought that using a class to create this XML will be…
Yasel
  • 2,920
  • 4
  • 40
  • 48
-2
votes
2 answers

XmlSerializer deserializing CR-LF as just LF

Possible Duplicate: XML Carriage return encoding I have a class with some simple string and int values on it that I am using the XmlSerializer to serialize to a file like so. (this is literally the code I am using) XmlSerializer xmlser = new…
anon
-3
votes
2 answers

What does LS stand for in LSSerializer ? Say as in org.w3c.dom.ls.LSSerializer

Like XMLSerializer we have LSSerializer in Java. What does LS indicate in it?
Shruthi HM
  • 55
  • 1
  • 2
  • 6
-3
votes
1 answer

Map XML child element to C# class

I have following XML: xml += ""; xml += ""; xml += " true"; xml += " "; xml += " "; xml += " …
Dmitrij Kultasev
  • 5,447
  • 5
  • 44
  • 88
-3
votes
6 answers

Class for serialization into XML with different node structure in list

I want to create a serializable C# class that would serialize into: false false Can you…
Nickon
  • 9,652
  • 12
  • 64
  • 119
-3
votes
1 answer

XML: Writing to file is null?

I've debugged it so far, the list has the values.. however its not writing them out to the file. I'm not sure why it's null. The GameObjects class holds all the fields. GameObjectData is just for the list. Then ChestPlate inherits from GameObjects.…
callum
  • 11
  • 1
  • 4
1 2 3
95
96