comparison Implab/JSON/JSONXmlReaderOptions.cs @ 63:908b4f340c69

fixed: JSONXmlReader.Value returns invalid textual representation for numbers.
author cin
date Mon, 23 Jun 2014 17:34:40 +0400
parents 10c7337d29e7
children a809805210d1
comparison
equal deleted inserted replaced
62:62b440d46313 63:908b4f340c69
55 /// </summary> 55 /// </summary>
56 public XmlNameTable NameTable { 56 public XmlNameTable NameTable {
57 get; 57 get;
58 set; 58 set;
59 } 59 }
60
61 /// <summary>
62 /// Флаг, означающий, что неужно освободить парсер по окончанию работы.
63 /// </summary>
64 public bool DisposeParser {
65 get;
66 set;
67 }
60 } 68 }
61 } 69 }