Mercurial > pub > ImplabNet
comparison Implab/Xml/JsonXmlReaderPosition.cs @ 227:8d5de4eb9c2c v2
Reimplemented JsonXmlReader, added support for null values: JSON null values are
mapped to empty nodes with 'xsi:nil' attribute set to 'true'
author | cin |
---|---|
date | Sat, 09 Sep 2017 03:53:13 +0300 |
parents | |
children | 5f7a3e1d32b9 |
comparison
equal
deleted
inserted
replaced
226:9428ea36838e | 227:8d5de4eb9c2c |
---|---|
1 using System; | |
2 using System.Collections.Generic; | |
3 using System.Linq; | |
4 using System.Text; | |
5 using System.Threading.Tasks; | |
6 | |
7 namespace Implab.Xml { | |
8 public enum JsonXmlReaderPosition { | |
9 Initial, | |
10 Declaration, | |
11 BeginArray, | |
12 BeginObject, | |
13 EndArray, | |
14 EndObject, | |
15 ValueElement, | |
16 ValueContent, | |
17 ValueEndElement, | |
18 Eof, | |
19 Closed, | |
20 Error | |
21 } | |
22 } |