| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632 |
- 2010-06-02 Atsushi Enomoto <[email protected]>
- * XmlBinaryDictionaryReader.cs : reset name in Reset().
- Fixed bug #599479.
- 2010-02-10 Atsushi Enomoto <[email protected]>
- * XmlDictionaryWriter.cs : try to lookup dictionary string in
- WriteNode(). This is part of #577139 fix (probably).
- 2010-02-10 Atsushi Enomoto <[email protected]>
- * XmlBinaryDictionaryWriter.cs : for text '0' and '1', write 0x80 and
- 0x82 instead of 0x99 [0x30|0x31]. This cosmetic fix gives identical
- writer output for #577139 (and yet it still doesn't work).
- 2009-12-22 Atsushi Enomoto <[email protected]>
- * XmlBinaryDictionaryReader.cs : slightly more descriptive errmsg.
- 2009-12-01 Sebastien Pouliot <[email protected]>
- * XmlDictionaryReader.cs: Fix ReadValueAsBase64 return value and
- remove NET_2_1 (gui-compare shows this in our 3.0 SP1 profile)
- 2009-09-21 Sebastien Pouliot <[email protected]>
- * XmlDictionaryWriter.cs: Remove usage of XmlMtomDictionaryWriter
- for NET_2_1
- 2009-07-22 Atsushi Enomoto <[email protected]>
- * XmlDictionaryReader.cs : ReadValueAsBase64(byte[],int,int) is only
- in SL2.
- 2009-07-14 Atsushi Enomoto <[email protected]>
- * XmlBinaryDictionaryReader.cs : read false (0x84) and true (0x86).
- 2009-07-07 Atsushi Enomoto <[email protected]>
- * XmlSimpleDictionaryWriter.cs : fix bogus import of
- XmlWriter.WriteNode() to handle more than two elements.
- 2009-06-05 Atsushi Enomoto <[email protected]>
- * XmlBinaryDictionaryReader.cs : fix GetAttribute() that returns
- attributes from cache that are *not* in current element.
- 2009-06-05 Atsushi Enomoto <[email protected]>
- * XmlBinaryDictionaryReader.cs : there was wrong reusage of nodes
- when the node was at the top of the stack. It was added twice and
- call to reset resulted in end element with empty names.
- 2009-05-29 Atsushi Enomoto <[email protected]>
- * XmlBinaryDictionaryWriter.cs : allow mapping an identical prefix
- to different xmlns in different element level.
- 2009-05-29 Atsushi Enomoto <[email protected]>
- * XmlBinaryDictionaryWriter.cs : allow writing xml/xmlns attributes
- without specifying their corresponding namespaces.
- 2009-05-23 Atsushi Enomoto <[email protected]>
- * XmlBinaryDictionaryReader.cs : fix regression on stream consumption
- excess.
- 2009-05-22 Atsushi Enomoto <[email protected]>
- * XmlBinaryDictionaryReader.cs : ReadContentString() returned
- doubled string result.
- 2009-05-19 Atsushi Enomoto <[email protected]>
- * XmlBinaryDictionaryReader.cs : fix utf16 array on getting its
- length. Report correct length (since BinaryReader is directly used
- it makes no sense to incompletely keep track of position in Source).
- 2009-05-19 Atsushi Enomoto <[email protected]>
- * XmlBinaryDictionaryReader.cs : support reader quotas.
- 2009-05-07 Sebastien Pouliot <[email protected]>
- * UniqueId.cs: Fix attributes for v3.5 (and later 2.0 SP) and remove
- them (in particular [SecurityTreatAsSafe]) from the NET_2_1 build.
- 2009-04-27 Atsushi Enomoto <[email protected]>
- * XmlBinaryDictionaryReader.cs : several fixes;
- - Name property was always empty.
- - Value property was always empty for attributes.
- - TextIndex node type was not supported.
- - node reset at Read() was incomplete.
- - attribute Prefix for single character had wrong value.
- - namespace nodes did not appear as attribute nodes.
- - attribute value node must be always single. Another text node
- means a text child of the element, not the following attr value.
- tests will go in sys.servicemodel.
- 2009-04-15 Atsushi Enomoto <[email protected]>
- * XmlMtomDictionaryReader.cs : new.
- * XmlDictionaryReader.cs : implemented CreateMtomReader().
- 2009-04-02 Atsushi Enomoto <[email protected]>
- * XmlMtomDictionaryWriter.cs : new.
- * XmlDictionaryWriter.cs : implement CreateMtomWriter().
- 2009-04-01 Atsushi Enomoto <[email protected]>
- * XmlDictionaryReader.cs : add ReadStartElement() overload.
- 2009-04-01 Atsushi Enomoto <[email protected]>
- * UniqueId.cs : add missing security attributes.
- * XmlDictionaryReader.cs : cleanup extra TODOs.
- * XmlBinaryDictionaryReader.cs : iplement IsArray.
- 2009-03-31 Atsushi Enomoto <[email protected]>
- * XmlBinaryDictionaryReader.cs, XmlDictionaryWriter.cs :
- a couple of fixes to reflect correct values for node properties
- on each read step.
- 2009-03-31 Atsushi Enomoto <[email protected]>
- * XmlBinaryDictionaryReader.cs, XmlBinaryFormat.cs :
- support array operation (0x03) on reader too.
- 2009-03-31 Atsushi Enomoto <[email protected]>
- * XmlBinaryDictionaryReader.cs : removed lots of unused part.
- 2009-03-31 Atsushi Enomoto <[email protected]>
- * XmlBinaryDictionaryWriterAutoGen.cs : generated code.
- * XmlBinaryFormat.cs, XmlBinaryDictionaryWriter.cs :
- support array operation (0x03) and a bunch of WriteArray() methods.
- 2009-03-31 Atsushi Enomoto <[email protected]>
- * XmlBinaryDictionaryReader.cs, XmlBinaryDictionaryWriter.cs
- XmlBinaryFormat.cs : implemented element with short prefix.
- 2009-03-27 Atsushi Enomoto <[email protected]>
- * XmlBinaryFormat.cs, XmlBinaryDictionaryWriter.cs :
- resolved all namespace and QName issues.
- 2009-03-27 Atsushi Enomoto <[email protected]>
- * XmlBinaryDictionaryWriter.cs : further namespace refactory.
- namespaces are managed by its own (to work fine for both string
- and dictionary string).
- 2009-03-27 Atsushi Enomoto <[email protected]>
- * XmlBinaryFormat.cs, XmlBinaryDictionaryReader.cs,
- XmlBinaryDictionaryWriter.cs : improved shorthanded prefix
- support. Not only autocreated prefixes but also explicitly-
- specified 'a' .. 'z' prefixes are mapped as shorthand.
- Some significant (and ongoing) namespace support changes.
- 2009-03-26 Atsushi Enomoto <[email protected]>
- * XmlBinaryFormat.cs, XmlBinaryDictionaryWriter.cs :
- added some incomplete code for QName support.
- 2009-03-26 Atsushi Enomoto <[email protected]>
- * XmlBinaryDictionaryReader.cs, XmlBinaryFormat.cs :
- handle utf16 typed nodes. (not sure if it is used in writer.)
- 2009-03-26 Atsushi Enomoto <[email protected]>
- * XmlBinaryDictionaryWriter.cs : oops, fix build.
- 2009-03-26 Atsushi Enomoto <[email protected]>
- * XmlBinaryDictionaryWriter.cs, XmlBinaryDictionaryReader.cs,
- XmlBinaryFormat.cs, : reverted Uuid change (UniqueId is different).
- Updated TODO status. Removed extra BinaryReader type.
- 2009-03-26 Atsushi Enomoto <[email protected]>
- * XmlBinaryDictionaryReader.cs, XmlBinaryDictionaryWriter.cs,
- XmlBinaryFormat.cs : fixed couple of issues regarding text and
- base64 fixed-length buffers (their sizes are not variant).
- Some ongoing changes on reading dummy-prefixed attributes.
- 2009-03-25 Atsushi Enomoto <[email protected]>
- * XmlBinaryDictionaryReader.cs, XmlBinaryFormat.cs,
- XmlBinaryDictionaryWriter.cs : couple of enhancements to support
- missing types, Dictionary string lookups and indexing fixes.
- Also reflect some correction by [MC-NBFX] (MS OSPed document).
- * XmlBinaryReaderSession.cs : implemented.
- 2009-03-18 Atsushi Enomoto <[email protected]>
- * XmlDictionaryReader.cs : more not-understandable bits.
- 2009-03-18 Atsushi Enomoto <[email protected]>
- * XmlDictionaryReader.cs : implemented ReadFullStartElement (full??).
- 2009-03-18 Atsushi Enomoto <[email protected]>
- * XmlDictionaryReader.cs : implemented missing && understandable
- members.
- 2009-03-02 Chris Toshok <[email protected]>
- * XmlBinaryDictionaryReader.cs, XmlSimpleDictionaryReader.cs: 2.1
- has HasValue.
- 2009-02-13 Jonathan Pryor <[email protected]>
- * UniqueId.cs: Remove most [MonoTODO]s and NotImplementedExceptions.
- Revert the 2009-02-12 UniqueId.IsGuid "fix", as .NET says that
- new UniqueId(new Guid()).IsGuid==false (which makes no sense, as
- .ToString() on the same instance includes the "urn:uuid:" prefix,
- which is used by Guids...).
- 2009-02-13 Jonathan Pryor <[email protected]>
- * XmlDictionaryWriter.cs: Implement WriteValue(IStreamProvider).
- 2009-02-13 Jonathan Pryor <[email protected]>
- * XmlDictionaryWriter.cs: Implement
- WriteTextNode(XmlDictionaryReader,bool). This requires changes to
- WriteNode(), as testing had determined that WriteTextNode() is used
- instead of WriteString() for Text nodes and attribute values when
- called via WriteNode().
- 2009-02-12 Jonathan Pryor <[email protected]>
- * XmlDictionaryWriter.cs: Implement WriteValue(Guid),
- WriteValue(TimeSpan), WriteValue(UniqueId).
- * UniqueId.cs: Fix UniqueId.IsGuid, as `new UniqueId(new Guid())` was
- previously being detected as a string value, not a Guid value.
- 2009-02-12 Jonathan Pryor <[email protected]>
- * XmlDictionaryWriter.cs (WriteStartElement): Add parameter checking
- and default arguments to avoid NullReferenceExceptions.
- 2009-02-11 Jonathan Pryor <[email protected]>
- * XmlDictionaryString.cs: Add constructor argument checking.
- 2009-02-10 Jonathan Pryor <[email protected]>
- * IFragmentCapableXmlDictionaryWriter.cs: Added.
- 2008-09-09 Atsushi Enomoto <[email protected]>
- Jb Evain <[email protected]>
- * XmlBinaryDictionaryReader.cs, XmlSimpleDictionaryReader.cs:
- add support to build on the net_2_1 profile.
- 2008-04-10 Eyal Alaluf <[email protected]>
- * XmlBinaryDictionaryWriter.cs: WriteXmlnsAttribute generates a prefix
- when given a null prefix.
- 2008-03-22 Atsushi Enomoto <[email protected]>
- * XmlBinaryDictionaryReader.cs :
- - It didn't clean namespaces up during Read().
- - Non-typed attribute nodes should be allowed in get_Value().
- - Fixed wrong namespace scope push.
- 2008-02-27 Eyal Alaluf <[email protected]>
- * XmlBinaryDictionaryReader.cs: Handle compilation warnings.
- * XmlSimpleDictionaryReader.cs: Added onClose handling.
- * XmlDictionaryReader.cs: Simple implementation of CreateTextReader.
- 2008-02-08 Atsushi Enomoto <[email protected]>
- * XmlDictionaryWriter.cs : Even with UTF8 (marked) .net does not
- output BOMs, so use always unmarked utf8 for any UTF8 encodings.
- 2008-02-08 Atsushi Enomoto <[email protected]>
- * XmlDictionaryWriter.cs : Since it does not support XML declaration
- its encoding is limited to utf16 and utf8. Null argument check.
- 2007-11-27 Atsushi Enomoto <[email protected]>
- * XmlDictionaryWriter.cs : WriteNode() is override, not new.
- 2007-07-27 Atsushi Enomoto <[email protected]>
- * XmlDictionaryWriter.cs : store Depth for dummy prefix output.
- WriteXmlnsAttribute() writes dummy prefix when null prefix is given.
- * XmlSimpleDictionaryWriter.cs, XmlBinaryDictionaryWriter.cs :
- increment Depth on WriteStartElement() and decrement it on
- WriteEndElement(). They don't have to be complete, just fine as
- long as it correctly creates a dummy.
- 2007-04-02 Atsushi Enomoto <[email protected]>
- * XmlBinaryFormat.cs : added Base64Fixed (0xA0).
- * XmlBinaryDictionaryReader.cs : support 0xA0 type above.
- ReadInt() refactoring. Handle float and double value types.
- 2007-03-30 Atsushi Enomoto <[email protected]>
- * XmlBinaryDictionaryReader.cs :
- implemented some ReadContentAs[Type]() methods.
- * XmlDictionaryReader.cs :
- Added Read[[Element]ContentAs]String() implementations.
- * XmlDictionaryReaderAutoGen.cs : regenerated
- 2007-03-20 Atsushi Enomoto <[email protected]>
- * XmlDictionaryReader.cs : simply return false for
- TryGet[Base64|Array]Length().
- * XmlBinaryDictionaryReader.cs : Value string should be pupulated
- for typed value nodes.
- 2007-03-19 Atsushi Enomoto <[email protected]>
- * XmlDictionaryReader.cs : more ongoing updates (valuetype support,
- key support updates, ReadElementContentAsBase64).
- 2007-03-19 Atsushi Enomoto <[email protected]>
- * XmlBinaryFormat.cs, XmlBinaryDictionaryWriter.cs :
- support following operators; 0x80 (integer 0), 0x82 (integer 1) and
- 0xAE (UniqueId which is created from Guid).
- Little fix for length output.
- 2007-03-16 Atsushi Enomoto <[email protected]>
- * XmlDictionaryReader.cs : fix infinite loop.
- 2007-03-16 Atsushi Enomoto <[email protected]>
- * XmlDictionaryReader.cs : added couple of missing methods.
- 2007-03-16 Atsushi Enomoto <[email protected]>
- * XmlDictionaryReaderAutoGen.cs : regenerated.
- 2007-03-16 Atsushi Enomoto <[email protected]>
- * XmlBinaryDictionaryReader.cs : ongoing updates to the 3.0 RTM
- format.
- 2007-03-16 Atsushi Enomoto <[email protected]>
- * XmlBinaryDictionaryWriter.cs : for XmlWriterBinarySession lookup,
- internal dictionary lookup should be string-based, since otherwise
- it will never return correct dictionary string stored when the
- dictionary string is from another dictionary.
- * XmlBinaryWriterSession.cs :
- TryLookup() is now based on string value comparison.
- Reverted internal dictionary to int->XmlDictionaryString form,
- as I don't use TryGetValue() anymore.
- 2007-03-16 Atsushi Enomoto <[email protected]>
- * XmlBinaryDictionaryWriter.cs : WriteValue(Decimal) is working now.
- 2007-03-15 Atsushi Enomoto <[email protected]>
- * XmlBinaryFormat.cs : new file, collection of constants.
- * XmlBinaryDictionaryWriter.cs :
- Stream->BinaryWriter. Support for WriteValue() for almost all
- types.
- 2007-03-15 Atsushi Enomoto <[email protected]>
- * XmlDictionaryWriter.cs : removed couple of MonoTODOs.
- 2007-03-15 Atsushi Enomoto <[email protected]>
- * XmlBinaryDictionaryWriter.cs : more couple of fixes (typed value
- support and fixes, more element/attribute namespace fixes etc.).
- 2007-03-15 Atsushi Enomoto <[email protected]>
- * XmlBinaryDictionaryWriter.cs : fixed Base64 operation byte.
- For comment node there is no corresponding combined EndElement
- operation, so don't try to combine it.
- Don't output xmlns and xml namespaces.
- 2007-03-15 Atsushi Enomoto <[email protected]>
- * XmlBinaryDictionaryWriter.cs : fixed couple of dictionary string
- issues (on lookup and index output).
- * XmlBinaryWriterSession.cs : added internal TryLookup(). Changed
- internal structure to have dictionary string as a key.
- 2007-03-15 Atsushi Enomoto <[email protected]>
- * XmlBinaryDictionaryWriter.cs : new prefix population is needed
- in this class too.
- 2007-03-15 Atsushi Enomoto <[email protected]>
- * XmlBinaryDictionaryWriter.cs : more WriteEndAttribute() is needed.
- Remove wrong namespaceUri index output. Fixed attribute operation.
- 2007-03-15 Atsushi Enomoto <[email protected]>
- * XmlBinaryDictionaryWriter.cs : output attribute value.
- 2007-03-15 Atsushi Enomoto <[email protected]>
- * XmlBinaryDictionaryWriter.cs : for binary output format requirement,
- every content must be buffered once and wait for next operation so
- that if the content is one of the content sequence or not. This is
- almost silly, but that is what Microsoft wanted to do.
- 2007-03-15 Atsushi Enomoto <[email protected]>
- * XmlBinaryDictionaryWriter.cs : couple of namespaces processing fix.
- 2007-03-15 Atsushi Enomoto <[email protected]>
- * XmlDictionaryWriter.cs : WriteAttributeString and WriteStartElement
- should also delegate to dictionary-string based methods.
- * XmlBinaryDictionaryWriter.cs : ongoing reimplementation as it was
- based on pretty old design as well as pretty old XmlTextWriter.
- 2007-03-14 Atsushi Enomoto <[email protected]>
- * XmlBinaryWriterSession.cs : implemented.
- * XmlBinaryDictionaryWriter.cs : a bunch of updates.
- 2007-03-14 Atsushi Enomoto <[email protected]>
- * UniqueId.cs : hacky Equals() implementation.
- * XmlDictionaryReaderQuotas.cs : removed Default and fixed Max.
- * XmlSimpleDictionaryWriter.cs : in .NET 3.0 RTM, it is supported.
- * XmlDictionaryWriter.cs : WriteStartElement(XmlDictionaryString,
- XmlDictionaryString) should call WriteStartElement(string,
- XmlDictionaryString,XmlDictionaryString) since because only the
- latter is overridable and possible to provide dictionary string.
- 2007-03-09 Atsushi Enomoto <[email protected]>
- * XmlDictionaryReader.cs : make it partial. Fill Quotas when requested.
- * XmlDictionaryReaderAutoGen.cs : added autogenerated array reader
- methods.
- * XmlDictionaryWriter.cs : make it partial.
- * XmlDictionaryWruterAutoGen.cs : added autogenerated array writer
- methods.
- 2006-10-05 Atsushi Enomoto <[email protected]>
- * XmlBinaryDictionaryReader.cs, XmlSimpleDictionaryReader.cs :
- implement IXmlNamespaceResolver.
- 2006-07-31 Ankit Jain <[email protected]>
- * UniqueId.cs (.ctor): (string overload) Implement.
- (ToString): Prepend "urn:uuid:" instead of "uuid-".
- 2006-07-31 Atsushi Enomoto <[email protected]>
- * UniqueId.cs : some implementation.
- 2006-07-04 Atsushi Enomoto <[email protected]>
- * XmlDictionaryWriter.cs, XmlSimpleDictionaryWriter.cs,
- XmlDictionaryReaderQuotas.cs : June CTP API update.
- 2006-07-04 Atsushi Enomoto <[email protected]>
- * XmlBinaryDictionaryReader.cs, IStreamProvider.cs,
- XmlSimpleDictionaryReader.cs, IXmlMtomReaderInitializer.cs,
- XmlBinaryWriterSession.cs, IXmlUTF8ReaderInitializer.cs,
- IXmlMtomWriterInitializer.cs, XmlDictionaryReader.cs :
- June CTP API updates.
- 2006-01-17 Atsushi Enomoto <[email protected]>
- * XmlShimWriter.cs : deleted.
- * XmlBinaryDictionaryWriter.cs, XmlSimpleDictionaryWriter.cs :
- WriteProcessingInstruction() throws InvalidOperationException.
- 2005-11-28 Atsushi Enomoto <[email protected]>
- * XmlDictionaryReader.cs, XmlBinaryDictionaryWriter.cs,
- XmlDictionary.cs, XmlDictionaryWriter.cs, XmlC14NWriter.cs :
- several API fixes to Nov. CTP.
- 2005-11-03 Atsushi Enomoto <[email protected]>
- * XmlDictionaryReader.cs : CreateMtomReader() stubs.
- 2005-10-24 Atsushi Enomoto <[email protected]>
- * XmlBinaryDictionaryWriter.cs : use saved xml_lang and xml_space for
- those corresponding properties (they bork at the declaring element).
- 2005-10-24 Atsushi Enomoto <[email protected]>
- * UniqueId.cs : it does not compile.
- 2005-10-23 Duncan Mak <[email protected]>
- * UniqueId.cs (.ctor): Implement some overloads by chaining it to
- other Unimplemented ones.
- (operator ==, operator !=): Implemented using the Equals method.
- (Equals, TryGetGuid): Well, at least figure the false case....
- 2005-10-23 Atsushi Enomoto <[email protected]>
- * XmlDictionary.cs : fixed type of Empty.
- * XmlDictionaryReaderQuotas.cs : Default and Max were not readonly.
- 2005-10-05 Atsushi Enomoto <[email protected]>
- * XmlBinaryDictionaryReader.cs : and it can GetContext().
- 2005-10-05 Atsushi Enomoto <[email protected]>
- * XmlBinaryDictionaryWriter.cs :
- Fixed index for room-reserved attributes (0x22-0x3B).
- Added note on 0x9D.
- * XmlBinaryDictionaryReader.cs :
- Several fixes to get it work fine.
- 2005-10-05 Atsushi Enomoto <[email protected]>
- * XmlDictionary.cs : TryLookup() should use TryGetValue().
- Fixed incorrect upper bound check for TryLookup(int, out dictstr).
- * XmlBinaryDictionaryWriter.cs : Use 0x8B for empty string everywhere
- we use 0x83.
- 2005-10-04 Atsushi Enomoto <[email protected]>
- * XmlBinaryDictionaryReader.cs : new file for CreateBinaryReader().
- * XmlDictionaryReader.cs : use above.
- * XmlBinaryDictionaryWriter.cs : several fixes (renamed private
- fields, added more notes, and much more).
- 2005-10-04 Atsushi Enomoto <[email protected]>
- * XmlBinaryDictionaryWriter.cs :
- Added notes on dictionary string support inference. Fixed filename.
- 2005-10-04 Atsushi Enomoto <[email protected]>
- * XmlBinaryDictionaryWriter.cs : new file for CreateBinaryWriter().
- * XmlDictionaryWriter.cs : use above.
- 2005-10-03 Atsushi Enomoto <[email protected]>
- * XmlDictionaryWriter.cs : stubby WriteNode() impl.
- * XmlBinaryWriterSession.cs : tiny notes.
- 2005-10-03 Atsushi Enomoto <[email protected]>
- * XmlSimpleDictionaryWriter.cs : new file for CreateDictionaryWriter().
- Implemented simple XmlWriter functionality.
- * XmlDictionaryWriter.cs : use above.
- 2005-10-03 Atsushi Enomoto <[email protected]>
- * XmlDictionaryWriter.cs : implemented some members. Added more stubs.
- 2005-09-29 Duncan Mak <[email protected]>
- * XmlDictionaryWriter.cs (CreateBinaryWriter): Added stub.
- 2005-09-28 Duncan Mak <[email protected]>
- * XmlDictionaryWriter.cs (CreateDictionaryWriter): Added stub.
- 2005-09-27 Atsushi Enomoto <[email protected]>
- * XmlDictionaryReader.cs :
- Some member signature fixes.
- implemented CreateDictionaryReader().
- TryGetLocalNameAsDictionaryString() seems always returning false.
- IsLocalName() is not likely to use TryGet...() above.
- * XmlSimpleDictionaryReader.cs : for CreateDictionaryReader().
- 2005-09-26 Atsushi Enomoto <[email protected]>
- * XmlDictionaryString.cs, XmlDictionary.cs,
- XmlDictionaryReaderQuotas.cs, XmlDictionaryReader.cs:
- added some implementations.
- 2005-09-22 Atsushi Enomoto <[email protected]>
- * XmlDictionaryString.cs, XmlShimWriter.cs,
- IXmlBinaryWriterInitializer.cs, IXmlUTF8WriterInitializer.cs,
- XmlDictionaryWriter.cs, UniqueId.cs, XmlC14NWriter.cs,
- XmlDictionary.cs, OnXmlDictionaryReaderClose.cs,
- XmlBinaryReaderSession.cs, IXmlMtomReaderInitializer.cs,
- IXmlDictionary.cs, IXmlBinaryReaderInitializer.cs,
- XmlCanonicalWriter.cs, XmlBinaryWriterSession.cs,
- XmlDictionaryReaderQuotas.cs, IXmlUTF8ReaderInitializer.cs,
- IXmlMtomWriterInitializer.cs, XmlDictionaryReader.cs :
- #if NET_2_0. coding style was updated.
- 2005-09-22 Atsushi Enomoto <[email protected]>
- * IXmlBinaryReaderInitializer.cs
- IXmlBinaryWriterInitializer.cs
- IXmlDictionary.cs
- IXmlMtomReaderInitializer.cs
- IXmlMtomWriterInitializer.cs
- IXmlUTF8ReaderInitializer.cs
- IXmlUTF8WriterInitializer.cs
- OnXmlDictionaryReaderClose.cs
- UniqueId.cs
- XmlBinaryReaderSession.cs
- XmlBinaryWriterSession.cs
- XmlC14NWriter.cs
- XmlCanonicalWriter.cs
- XmlDictionary.cs
- XmlDictionaryReader.cs
- XmlDictionaryReaderQuotas.cs
- XmlDictionaryString.cs
- XmlDictionaryWriter.cs
- XmlShimWriter.cs : new files.
|