ChangeLog 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588
  1. 2009-06-05 Atsushi Enomoto <[email protected]>
  2. * XmlBinaryDictionaryReader.cs : fix GetAttribute() that returns
  3. attributes from cache that are *not* in current element.
  4. 2009-06-05 Atsushi Enomoto <[email protected]>
  5. * XmlBinaryDictionaryReader.cs : there was wrong reusage of nodes
  6. when the node was at the top of the stack. It was added twice and
  7. call to reset resulted in end element with empty names.
  8. 2009-05-29 Atsushi Enomoto <[email protected]>
  9. * XmlBinaryDictionaryWriter.cs : allow mapping an identical prefix
  10. to different xmlns in different element level.
  11. 2009-05-29 Atsushi Enomoto <[email protected]>
  12. * XmlBinaryDictionaryWriter.cs : allow writing xml/xmlns attributes
  13. without specifying their corresponding namespaces.
  14. 2009-05-23 Atsushi Enomoto <[email protected]>
  15. * XmlBinaryDictionaryReader.cs : fix regression on stream consumption
  16. excess.
  17. 2009-05-22 Atsushi Enomoto <[email protected]>
  18. * XmlBinaryDictionaryReader.cs : ReadContentString() returned
  19. doubled string result.
  20. 2009-05-19 Atsushi Enomoto <[email protected]>
  21. * XmlBinaryDictionaryReader.cs : fix utf16 array on getting its
  22. length. Report correct length (since BinaryReader is directly used
  23. it makes no sense to incompletely keep track of position in Source).
  24. 2009-05-19 Atsushi Enomoto <[email protected]>
  25. * XmlBinaryDictionaryReader.cs : support reader quotas.
  26. 2009-05-07 Sebastien Pouliot <[email protected]>
  27. * UniqueId.cs: Fix attributes for v3.5 (and later 2.0 SP) and remove
  28. them (in particular [SecurityTreatAsSafe]) from the NET_2_1 build.
  29. 2009-04-27 Atsushi Enomoto <[email protected]>
  30. * XmlBinaryDictionaryReader.cs : several fixes;
  31. - Name property was always empty.
  32. - Value property was always empty for attributes.
  33. - TextIndex node type was not supported.
  34. - node reset at Read() was incomplete.
  35. - attribute Prefix for single character had wrong value.
  36. - namespace nodes did not appear as attribute nodes.
  37. - attribute value node must be always single. Another text node
  38. means a text child of the element, not the following attr value.
  39. tests will go in sys.servicemodel.
  40. 2009-04-15 Atsushi Enomoto <[email protected]>
  41. * XmlMtomDictionaryReader.cs : new.
  42. * XmlDictionaryReader.cs : implemented CreateMtomReader().
  43. 2009-04-02 Atsushi Enomoto <[email protected]>
  44. * XmlMtomDictionaryWriter.cs : new.
  45. * XmlDictionaryWriter.cs : implement CreateMtomWriter().
  46. 2009-04-01 Atsushi Enomoto <[email protected]>
  47. * XmlDictionaryReader.cs : add ReadStartElement() overload.
  48. 2009-04-01 Atsushi Enomoto <[email protected]>
  49. * UniqueId.cs : add missing security attributes.
  50. * XmlDictionaryReader.cs : cleanup extra TODOs.
  51. * XmlBinaryDictionaryReader.cs : iplement IsArray.
  52. 2009-03-31 Atsushi Enomoto <[email protected]>
  53. * XmlBinaryDictionaryReader.cs, XmlDictionaryWriter.cs :
  54. a couple of fixes to reflect correct values for node properties
  55. on each read step.
  56. 2009-03-31 Atsushi Enomoto <[email protected]>
  57. * XmlBinaryDictionaryReader.cs, XmlBinaryFormat.cs :
  58. support array operation (0x03) on reader too.
  59. 2009-03-31 Atsushi Enomoto <[email protected]>
  60. * XmlBinaryDictionaryReader.cs : removed lots of unused part.
  61. 2009-03-31 Atsushi Enomoto <[email protected]>
  62. * XmlBinaryDictionaryWriterAutoGen.cs : generated code.
  63. * XmlBinaryFormat.cs, XmlBinaryDictionaryWriter.cs :
  64. support array operation (0x03) and a bunch of WriteArray() methods.
  65. 2009-03-31 Atsushi Enomoto <[email protected]>
  66. * XmlBinaryDictionaryReader.cs, XmlBinaryDictionaryWriter.cs
  67. XmlBinaryFormat.cs : implemented element with short prefix.
  68. 2009-03-27 Atsushi Enomoto <[email protected]>
  69. * XmlBinaryFormat.cs, XmlBinaryDictionaryWriter.cs :
  70. resolved all namespace and QName issues.
  71. 2009-03-27 Atsushi Enomoto <[email protected]>
  72. * XmlBinaryDictionaryWriter.cs : further namespace refactory.
  73. namespaces are managed by its own (to work fine for both string
  74. and dictionary string).
  75. 2009-03-27 Atsushi Enomoto <[email protected]>
  76. * XmlBinaryFormat.cs, XmlBinaryDictionaryReader.cs,
  77. XmlBinaryDictionaryWriter.cs : improved shorthanded prefix
  78. support. Not only autocreated prefixes but also explicitly-
  79. specified 'a' .. 'z' prefixes are mapped as shorthand.
  80. Some significant (and ongoing) namespace support changes.
  81. 2009-03-26 Atsushi Enomoto <[email protected]>
  82. * XmlBinaryFormat.cs, XmlBinaryDictionaryWriter.cs :
  83. added some incomplete code for QName support.
  84. 2009-03-26 Atsushi Enomoto <[email protected]>
  85. * XmlBinaryDictionaryReader.cs, XmlBinaryFormat.cs :
  86. handle utf16 typed nodes. (not sure if it is used in writer.)
  87. 2009-03-26 Atsushi Enomoto <[email protected]>
  88. * XmlBinaryDictionaryWriter.cs : oops, fix build.
  89. 2009-03-26 Atsushi Enomoto <[email protected]>
  90. * XmlBinaryDictionaryWriter.cs, XmlBinaryDictionaryReader.cs,
  91. XmlBinaryFormat.cs, : reverted Uuid change (UniqueId is different).
  92. Updated TODO status. Removed extra BinaryReader type.
  93. 2009-03-26 Atsushi Enomoto <[email protected]>
  94. * XmlBinaryDictionaryReader.cs, XmlBinaryDictionaryWriter.cs,
  95. XmlBinaryFormat.cs : fixed couple of issues regarding text and
  96. base64 fixed-length buffers (their sizes are not variant).
  97. Some ongoing changes on reading dummy-prefixed attributes.
  98. 2009-03-25 Atsushi Enomoto <[email protected]>
  99. * XmlBinaryDictionaryReader.cs, XmlBinaryFormat.cs,
  100. XmlBinaryDictionaryWriter.cs : couple of enhancements to support
  101. missing types, Dictionary string lookups and indexing fixes.
  102. Also reflect some correction by [MC-NBFX] (MS OSPed document).
  103. * XmlBinaryReaderSession.cs : implemented.
  104. 2009-03-18 Atsushi Enomoto <[email protected]>
  105. * XmlDictionaryReader.cs : more not-understandable bits.
  106. 2009-03-18 Atsushi Enomoto <[email protected]>
  107. * XmlDictionaryReader.cs : implemented ReadFullStartElement (full??).
  108. 2009-03-18 Atsushi Enomoto <[email protected]>
  109. * XmlDictionaryReader.cs : implemented missing && understandable
  110. members.
  111. 2009-03-02 Chris Toshok <[email protected]>
  112. * XmlBinaryDictionaryReader.cs, XmlSimpleDictionaryReader.cs: 2.1
  113. has HasValue.
  114. 2009-02-13 Jonathan Pryor <[email protected]>
  115. * UniqueId.cs: Remove most [MonoTODO]s and NotImplementedExceptions.
  116. Revert the 2009-02-12 UniqueId.IsGuid "fix", as .NET says that
  117. new UniqueId(new Guid()).IsGuid==false (which makes no sense, as
  118. .ToString() on the same instance includes the "urn:uuid:" prefix,
  119. which is used by Guids...).
  120. 2009-02-13 Jonathan Pryor <[email protected]>
  121. * XmlDictionaryWriter.cs: Implement WriteValue(IStreamProvider).
  122. 2009-02-13 Jonathan Pryor <[email protected]>
  123. * XmlDictionaryWriter.cs: Implement
  124. WriteTextNode(XmlDictionaryReader,bool). This requires changes to
  125. WriteNode(), as testing had determined that WriteTextNode() is used
  126. instead of WriteString() for Text nodes and attribute values when
  127. called via WriteNode().
  128. 2009-02-12 Jonathan Pryor <[email protected]>
  129. * XmlDictionaryWriter.cs: Implement WriteValue(Guid),
  130. WriteValue(TimeSpan), WriteValue(UniqueId).
  131. * UniqueId.cs: Fix UniqueId.IsGuid, as `new UniqueId(new Guid())` was
  132. previously being detected as a string value, not a Guid value.
  133. 2009-02-12 Jonathan Pryor <[email protected]>
  134. * XmlDictionaryWriter.cs (WriteStartElement): Add parameter checking
  135. and default arguments to avoid NullReferenceExceptions.
  136. 2009-02-11 Jonathan Pryor <[email protected]>
  137. * XmlDictionaryString.cs: Add constructor argument checking.
  138. 2009-02-10 Jonathan Pryor <[email protected]>
  139. * IFragmentCapableXmlDictionaryWriter.cs: Added.
  140. 2008-09-09 Atsushi Enomoto <[email protected]>
  141. Jb Evain <[email protected]>
  142. * XmlBinaryDictionaryReader.cs, XmlSimpleDictionaryReader.cs:
  143. add support to build on the net_2_1 profile.
  144. 2008-04-10 Eyal Alaluf <[email protected]>
  145. * XmlBinaryDictionaryWriter.cs: WriteXmlnsAttribute generates a prefix
  146. when given a null prefix.
  147. 2008-03-22 Atsushi Enomoto <[email protected]>
  148. * XmlBinaryDictionaryReader.cs :
  149. - It didn't clean namespaces up during Read().
  150. - Non-typed attribute nodes should be allowed in get_Value().
  151. - Fixed wrong namespace scope push.
  152. 2008-02-27 Eyal Alaluf <[email protected]>
  153. * XmlBinaryDictionaryReader.cs: Handle compilation warnings.
  154. * XmlSimpleDictionaryReader.cs: Added onClose handling.
  155. * XmlDictionaryReader.cs: Simple implementation of CreateTextReader.
  156. 2008-02-08 Atsushi Enomoto <[email protected]>
  157. * XmlDictionaryWriter.cs : Even with UTF8 (marked) .net does not
  158. output BOMs, so use always unmarked utf8 for any UTF8 encodings.
  159. 2008-02-08 Atsushi Enomoto <[email protected]>
  160. * XmlDictionaryWriter.cs : Since it does not support XML declaration
  161. its encoding is limited to utf16 and utf8. Null argument check.
  162. 2007-11-27 Atsushi Enomoto <[email protected]>
  163. * XmlDictionaryWriter.cs : WriteNode() is override, not new.
  164. 2007-07-27 Atsushi Enomoto <[email protected]>
  165. * XmlDictionaryWriter.cs : store Depth for dummy prefix output.
  166. WriteXmlnsAttribute() writes dummy prefix when null prefix is given.
  167. * XmlSimpleDictionaryWriter.cs, XmlBinaryDictionaryWriter.cs :
  168. increment Depth on WriteStartElement() and decrement it on
  169. WriteEndElement(). They don't have to be complete, just fine as
  170. long as it correctly creates a dummy.
  171. 2007-04-02 Atsushi Enomoto <[email protected]>
  172. * XmlBinaryFormat.cs : added Base64Fixed (0xA0).
  173. * XmlBinaryDictionaryReader.cs : support 0xA0 type above.
  174. ReadInt() refactoring. Handle float and double value types.
  175. 2007-03-30 Atsushi Enomoto <[email protected]>
  176. * XmlBinaryDictionaryReader.cs :
  177. implemented some ReadContentAs[Type]() methods.
  178. * XmlDictionaryReader.cs :
  179. Added Read[[Element]ContentAs]String() implementations.
  180. * XmlDictionaryReaderAutoGen.cs : regenerated
  181. 2007-03-20 Atsushi Enomoto <[email protected]>
  182. * XmlDictionaryReader.cs : simply return false for
  183. TryGet[Base64|Array]Length().
  184. * XmlBinaryDictionaryReader.cs : Value string should be pupulated
  185. for typed value nodes.
  186. 2007-03-19 Atsushi Enomoto <[email protected]>
  187. * XmlDictionaryReader.cs : more ongoing updates (valuetype support,
  188. key support updates, ReadElementContentAsBase64).
  189. 2007-03-19 Atsushi Enomoto <[email protected]>
  190. * XmlBinaryFormat.cs, XmlBinaryDictionaryWriter.cs :
  191. support following operators; 0x80 (integer 0), 0x82 (integer 1) and
  192. 0xAE (UniqueId which is created from Guid).
  193. Little fix for length output.
  194. 2007-03-16 Atsushi Enomoto <[email protected]>
  195. * XmlDictionaryReader.cs : fix infinite loop.
  196. 2007-03-16 Atsushi Enomoto <[email protected]>
  197. * XmlDictionaryReader.cs : added couple of missing methods.
  198. 2007-03-16 Atsushi Enomoto <[email protected]>
  199. * XmlDictionaryReaderAutoGen.cs : regenerated.
  200. 2007-03-16 Atsushi Enomoto <[email protected]>
  201. * XmlBinaryDictionaryReader.cs : ongoing updates to the 3.0 RTM
  202. format.
  203. 2007-03-16 Atsushi Enomoto <[email protected]>
  204. * XmlBinaryDictionaryWriter.cs : for XmlWriterBinarySession lookup,
  205. internal dictionary lookup should be string-based, since otherwise
  206. it will never return correct dictionary string stored when the
  207. dictionary string is from another dictionary.
  208. * XmlBinaryWriterSession.cs :
  209. TryLookup() is now based on string value comparison.
  210. Reverted internal dictionary to int->XmlDictionaryString form,
  211. as I don't use TryGetValue() anymore.
  212. 2007-03-16 Atsushi Enomoto <[email protected]>
  213. * XmlBinaryDictionaryWriter.cs : WriteValue(Decimal) is working now.
  214. 2007-03-15 Atsushi Enomoto <[email protected]>
  215. * XmlBinaryFormat.cs : new file, collection of constants.
  216. * XmlBinaryDictionaryWriter.cs :
  217. Stream->BinaryWriter. Support for WriteValue() for almost all
  218. types.
  219. 2007-03-15 Atsushi Enomoto <[email protected]>
  220. * XmlDictionaryWriter.cs : removed couple of MonoTODOs.
  221. 2007-03-15 Atsushi Enomoto <[email protected]>
  222. * XmlBinaryDictionaryWriter.cs : more couple of fixes (typed value
  223. support and fixes, more element/attribute namespace fixes etc.).
  224. 2007-03-15 Atsushi Enomoto <[email protected]>
  225. * XmlBinaryDictionaryWriter.cs : fixed Base64 operation byte.
  226. For comment node there is no corresponding combined EndElement
  227. operation, so don't try to combine it.
  228. Don't output xmlns and xml namespaces.
  229. 2007-03-15 Atsushi Enomoto <[email protected]>
  230. * XmlBinaryDictionaryWriter.cs : fixed couple of dictionary string
  231. issues (on lookup and index output).
  232. * XmlBinaryWriterSession.cs : added internal TryLookup(). Changed
  233. internal structure to have dictionary string as a key.
  234. 2007-03-15 Atsushi Enomoto <[email protected]>
  235. * XmlBinaryDictionaryWriter.cs : new prefix population is needed
  236. in this class too.
  237. 2007-03-15 Atsushi Enomoto <[email protected]>
  238. * XmlBinaryDictionaryWriter.cs : more WriteEndAttribute() is needed.
  239. Remove wrong namespaceUri index output. Fixed attribute operation.
  240. 2007-03-15 Atsushi Enomoto <[email protected]>
  241. * XmlBinaryDictionaryWriter.cs : output attribute value.
  242. 2007-03-15 Atsushi Enomoto <[email protected]>
  243. * XmlBinaryDictionaryWriter.cs : for binary output format requirement,
  244. every content must be buffered once and wait for next operation so
  245. that if the content is one of the content sequence or not. This is
  246. almost silly, but that is what Microsoft wanted to do.
  247. 2007-03-15 Atsushi Enomoto <[email protected]>
  248. * XmlBinaryDictionaryWriter.cs : couple of namespaces processing fix.
  249. 2007-03-15 Atsushi Enomoto <[email protected]>
  250. * XmlDictionaryWriter.cs : WriteAttributeString and WriteStartElement
  251. should also delegate to dictionary-string based methods.
  252. * XmlBinaryDictionaryWriter.cs : ongoing reimplementation as it was
  253. based on pretty old design as well as pretty old XmlTextWriter.
  254. 2007-03-14 Atsushi Enomoto <[email protected]>
  255. * XmlBinaryWriterSession.cs : implemented.
  256. * XmlBinaryDictionaryWriter.cs : a bunch of updates.
  257. 2007-03-14 Atsushi Enomoto <[email protected]>
  258. * UniqueId.cs : hacky Equals() implementation.
  259. * XmlDictionaryReaderQuotas.cs : removed Default and fixed Max.
  260. * XmlSimpleDictionaryWriter.cs : in .NET 3.0 RTM, it is supported.
  261. * XmlDictionaryWriter.cs : WriteStartElement(XmlDictionaryString,
  262. XmlDictionaryString) should call WriteStartElement(string,
  263. XmlDictionaryString,XmlDictionaryString) since because only the
  264. latter is overridable and possible to provide dictionary string.
  265. 2007-03-09 Atsushi Enomoto <[email protected]>
  266. * XmlDictionaryReader.cs : make it partial. Fill Quotas when requested.
  267. * XmlDictionaryReaderAutoGen.cs : added autogenerated array reader
  268. methods.
  269. * XmlDictionaryWriter.cs : make it partial.
  270. * XmlDictionaryWruterAutoGen.cs : added autogenerated array writer
  271. methods.
  272. 2006-10-05 Atsushi Enomoto <[email protected]>
  273. * XmlBinaryDictionaryReader.cs, XmlSimpleDictionaryReader.cs :
  274. implement IXmlNamespaceResolver.
  275. 2006-07-31 Ankit Jain <[email protected]>
  276. * UniqueId.cs (.ctor): (string overload) Implement.
  277. (ToString): Prepend "urn:uuid:" instead of "uuid-".
  278. 2006-07-31 Atsushi Enomoto <[email protected]>
  279. * UniqueId.cs : some implementation.
  280. 2006-07-04 Atsushi Enomoto <[email protected]>
  281. * XmlDictionaryWriter.cs, XmlSimpleDictionaryWriter.cs,
  282. XmlDictionaryReaderQuotas.cs : June CTP API update.
  283. 2006-07-04 Atsushi Enomoto <[email protected]>
  284. * XmlBinaryDictionaryReader.cs, IStreamProvider.cs,
  285. XmlSimpleDictionaryReader.cs, IXmlMtomReaderInitializer.cs,
  286. XmlBinaryWriterSession.cs, IXmlUTF8ReaderInitializer.cs,
  287. IXmlMtomWriterInitializer.cs, XmlDictionaryReader.cs :
  288. June CTP API updates.
  289. 2006-01-17 Atsushi Enomoto <[email protected]>
  290. * XmlShimWriter.cs : deleted.
  291. * XmlBinaryDictionaryWriter.cs, XmlSimpleDictionaryWriter.cs :
  292. WriteProcessingInstruction() throws InvalidOperationException.
  293. 2005-11-28 Atsushi Enomoto <[email protected]>
  294. * XmlDictionaryReader.cs, XmlBinaryDictionaryWriter.cs,
  295. XmlDictionary.cs, XmlDictionaryWriter.cs, XmlC14NWriter.cs :
  296. several API fixes to Nov. CTP.
  297. 2005-11-03 Atsushi Enomoto <[email protected]>
  298. * XmlDictionaryReader.cs : CreateMtomReader() stubs.
  299. 2005-10-24 Atsushi Enomoto <[email protected]>
  300. * XmlBinaryDictionaryWriter.cs : use saved xml_lang and xml_space for
  301. those corresponding properties (they bork at the declaring element).
  302. 2005-10-24 Atsushi Enomoto <[email protected]>
  303. * UniqueId.cs : it does not compile.
  304. 2005-10-23 Duncan Mak <[email protected]>
  305. * UniqueId.cs (.ctor): Implement some overloads by chaining it to
  306. other Unimplemented ones.
  307. (operator ==, operator !=): Implemented using the Equals method.
  308. (Equals, TryGetGuid): Well, at least figure the false case....
  309. 2005-10-23 Atsushi Enomoto <[email protected]>
  310. * XmlDictionary.cs : fixed type of Empty.
  311. * XmlDictionaryReaderQuotas.cs : Default and Max were not readonly.
  312. 2005-10-05 Atsushi Enomoto <[email protected]>
  313. * XmlBinaryDictionaryReader.cs : and it can GetContext().
  314. 2005-10-05 Atsushi Enomoto <[email protected]>
  315. * XmlBinaryDictionaryWriter.cs :
  316. Fixed index for room-reserved attributes (0x22-0x3B).
  317. Added note on 0x9D.
  318. * XmlBinaryDictionaryReader.cs :
  319. Several fixes to get it work fine.
  320. 2005-10-05 Atsushi Enomoto <[email protected]>
  321. * XmlDictionary.cs : TryLookup() should use TryGetValue().
  322. Fixed incorrect upper bound check for TryLookup(int, out dictstr).
  323. * XmlBinaryDictionaryWriter.cs : Use 0x8B for empty string everywhere
  324. we use 0x83.
  325. 2005-10-04 Atsushi Enomoto <[email protected]>
  326. * XmlBinaryDictionaryReader.cs : new file for CreateBinaryReader().
  327. * XmlDictionaryReader.cs : use above.
  328. * XmlBinaryDictionaryWriter.cs : several fixes (renamed private
  329. fields, added more notes, and much more).
  330. 2005-10-04 Atsushi Enomoto <[email protected]>
  331. * XmlBinaryDictionaryWriter.cs :
  332. Added notes on dictionary string support inference. Fixed filename.
  333. 2005-10-04 Atsushi Enomoto <[email protected]>
  334. * XmlBinaryDictionaryWriter.cs : new file for CreateBinaryWriter().
  335. * XmlDictionaryWriter.cs : use above.
  336. 2005-10-03 Atsushi Enomoto <[email protected]>
  337. * XmlDictionaryWriter.cs : stubby WriteNode() impl.
  338. * XmlBinaryWriterSession.cs : tiny notes.
  339. 2005-10-03 Atsushi Enomoto <[email protected]>
  340. * XmlSimpleDictionaryWriter.cs : new file for CreateDictionaryWriter().
  341. Implemented simple XmlWriter functionality.
  342. * XmlDictionaryWriter.cs : use above.
  343. 2005-10-03 Atsushi Enomoto <[email protected]>
  344. * XmlDictionaryWriter.cs : implemented some members. Added more stubs.
  345. 2005-09-29 Duncan Mak <[email protected]>
  346. * XmlDictionaryWriter.cs (CreateBinaryWriter): Added stub.
  347. 2005-09-28 Duncan Mak <[email protected]>
  348. * XmlDictionaryWriter.cs (CreateDictionaryWriter): Added stub.
  349. 2005-09-27 Atsushi Enomoto <[email protected]>
  350. * XmlDictionaryReader.cs :
  351. Some member signature fixes.
  352. implemented CreateDictionaryReader().
  353. TryGetLocalNameAsDictionaryString() seems always returning false.
  354. IsLocalName() is not likely to use TryGet...() above.
  355. * XmlSimpleDictionaryReader.cs : for CreateDictionaryReader().
  356. 2005-09-26 Atsushi Enomoto <[email protected]>
  357. * XmlDictionaryString.cs, XmlDictionary.cs,
  358. XmlDictionaryReaderQuotas.cs, XmlDictionaryReader.cs:
  359. added some implementations.
  360. 2005-09-22 Atsushi Enomoto <[email protected]>
  361. * XmlDictionaryString.cs, XmlShimWriter.cs,
  362. IXmlBinaryWriterInitializer.cs, IXmlUTF8WriterInitializer.cs,
  363. XmlDictionaryWriter.cs, UniqueId.cs, XmlC14NWriter.cs,
  364. XmlDictionary.cs, OnXmlDictionaryReaderClose.cs,
  365. XmlBinaryReaderSession.cs, IXmlMtomReaderInitializer.cs,
  366. IXmlDictionary.cs, IXmlBinaryReaderInitializer.cs,
  367. XmlCanonicalWriter.cs, XmlBinaryWriterSession.cs,
  368. XmlDictionaryReaderQuotas.cs, IXmlUTF8ReaderInitializer.cs,
  369. IXmlMtomWriterInitializer.cs, XmlDictionaryReader.cs :
  370. #if NET_2_0. coding style was updated.
  371. 2005-09-22 Atsushi Enomoto <[email protected]>
  372. * IXmlBinaryReaderInitializer.cs
  373. IXmlBinaryWriterInitializer.cs
  374. IXmlDictionary.cs
  375. IXmlMtomReaderInitializer.cs
  376. IXmlMtomWriterInitializer.cs
  377. IXmlUTF8ReaderInitializer.cs
  378. IXmlUTF8WriterInitializer.cs
  379. OnXmlDictionaryReaderClose.cs
  380. UniqueId.cs
  381. XmlBinaryReaderSession.cs
  382. XmlBinaryWriterSession.cs
  383. XmlC14NWriter.cs
  384. XmlCanonicalWriter.cs
  385. XmlDictionary.cs
  386. XmlDictionaryReader.cs
  387. XmlDictionaryReaderQuotas.cs
  388. XmlDictionaryString.cs
  389. XmlDictionaryWriter.cs
  390. XmlShimWriter.cs : new files.