1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632
|
2010-06-02 Atsushi Enomoto <atsushi@ximian.com>
* XmlBinaryDictionaryReader.cs : reset name in Reset().
Fixed bug #599479.
2010-02-10 Atsushi Enomoto <atsushi@ximian.com>
* XmlDictionaryWriter.cs : try to lookup dictionary string in
WriteNode(). This is part of #577139 fix (probably).
2010-02-10 Atsushi Enomoto <atsushi@ximian.com>
* 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 <atsushi@ximian.com>
* XmlBinaryDictionaryReader.cs : slightly more descriptive errmsg.
2009-12-01 Sebastien Pouliot <sebastien@ximian.com>
* 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 <sebastien@ximian.com>
* XmlDictionaryWriter.cs: Remove usage of XmlMtomDictionaryWriter
for NET_2_1
2009-07-22 Atsushi Enomoto <atsushi@ximian.com>
* XmlDictionaryReader.cs : ReadValueAsBase64(byte[],int,int) is only
in SL2.
2009-07-14 Atsushi Enomoto <atsushi@ximian.com>
* XmlBinaryDictionaryReader.cs : read false (0x84) and true (0x86).
2009-07-07 Atsushi Enomoto <atsushi@ximian.com>
* XmlSimpleDictionaryWriter.cs : fix bogus import of
XmlWriter.WriteNode() to handle more than two elements.
2009-06-05 Atsushi Enomoto <atsushi@ximian.com>
* XmlBinaryDictionaryReader.cs : fix GetAttribute() that returns
attributes from cache that are *not* in current element.
2009-06-05 Atsushi Enomoto <atsushi@ximian.com>
* 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 <atsushi@ximian.com>
* XmlBinaryDictionaryWriter.cs : allow mapping an identical prefix
to different xmlns in different element level.
2009-05-29 Atsushi Enomoto <atsushi@ximian.com>
* XmlBinaryDictionaryWriter.cs : allow writing xml/xmlns attributes
without specifying their corresponding namespaces.
2009-05-23 Atsushi Enomoto <atsushi@ximian.com>
* XmlBinaryDictionaryReader.cs : fix regression on stream consumption
excess.
2009-05-22 Atsushi Enomoto <atsushi@ximian.com>
* XmlBinaryDictionaryReader.cs : ReadContentString() returned
doubled string result.
2009-05-19 Atsushi Enomoto <atsushi@ximian.com>
* 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 <atsushi@ximian.com>
* XmlBinaryDictionaryReader.cs : support reader quotas.
2009-05-07 Sebastien Pouliot <sebastien@ximian.com>
* 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 <atsushi@ximian.com>
* 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 <atsushi@ximian.com>
* XmlMtomDictionaryReader.cs : new.
* XmlDictionaryReader.cs : implemented CreateMtomReader().
2009-04-02 Atsushi Enomoto <atsushi@ximian.com>
* XmlMtomDictionaryWriter.cs : new.
* XmlDictionaryWriter.cs : implement CreateMtomWriter().
2009-04-01 Atsushi Enomoto <atsushi@ximian.com>
* XmlDictionaryReader.cs : add ReadStartElement() overload.
2009-04-01 Atsushi Enomoto <atsushi@ximian.com>
* UniqueId.cs : add missing security attributes.
* XmlDictionaryReader.cs : cleanup extra TODOs.
* XmlBinaryDictionaryReader.cs : iplement IsArray.
2009-03-31 Atsushi Enomoto <atsushi@ximian.com>
* XmlBinaryDictionaryReader.cs, XmlDictionaryWriter.cs :
a couple of fixes to reflect correct values for node properties
on each read step.
2009-03-31 Atsushi Enomoto <atsushi@ximian.com>
* XmlBinaryDictionaryReader.cs, XmlBinaryFormat.cs :
support array operation (0x03) on reader too.
2009-03-31 Atsushi Enomoto <atsushi@ximian.com>
* XmlBinaryDictionaryReader.cs : removed lots of unused part.
2009-03-31 Atsushi Enomoto <atsushi@ximian.com>
* XmlBinaryDictionaryWriterAutoGen.cs : generated code.
* XmlBinaryFormat.cs, XmlBinaryDictionaryWriter.cs :
support array operation (0x03) and a bunch of WriteArray() methods.
2009-03-31 Atsushi Enomoto <atsushi@ximian.com>
* XmlBinaryDictionaryReader.cs, XmlBinaryDictionaryWriter.cs
XmlBinaryFormat.cs : implemented element with short prefix.
2009-03-27 Atsushi Enomoto <atsushi@ximian.com>
* XmlBinaryFormat.cs, XmlBinaryDictionaryWriter.cs :
resolved all namespace and QName issues.
2009-03-27 Atsushi Enomoto <atsushi@ximian.com>
* 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 <atsushi@ximian.com>
* 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 <atsushi@ximian.com>
* XmlBinaryFormat.cs, XmlBinaryDictionaryWriter.cs :
added some incomplete code for QName support.
2009-03-26 Atsushi Enomoto <atsushi@ximian.com>
* XmlBinaryDictionaryReader.cs, XmlBinaryFormat.cs :
handle utf16 typed nodes. (not sure if it is used in writer.)
2009-03-26 Atsushi Enomoto <atsushi@ximian.com>
* XmlBinaryDictionaryWriter.cs : oops, fix build.
2009-03-26 Atsushi Enomoto <atsushi@ximian.com>
* XmlBinaryDictionaryWriter.cs, XmlBinaryDictionaryReader.cs,
XmlBinaryFormat.cs, : reverted Uuid change (UniqueId is different).
Updated TODO status. Removed extra BinaryReader type.
2009-03-26 Atsushi Enomoto <atsushi@ximian.com>
* 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 <atsushi@ximian.com>
* 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 <atsushi@ximian.com>
* XmlDictionaryReader.cs : more not-understandable bits.
2009-03-18 Atsushi Enomoto <atsushi@ximian.com>
* XmlDictionaryReader.cs : implemented ReadFullStartElement (full??).
2009-03-18 Atsushi Enomoto <atsushi@ximian.com>
* XmlDictionaryReader.cs : implemented missing && understandable
members.
2009-03-02 Chris Toshok <toshok@ximian.com>
* XmlBinaryDictionaryReader.cs, XmlSimpleDictionaryReader.cs: 2.1
has HasValue.
2009-02-13 Jonathan Pryor <jpryor@novell.com>
* 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 <jpryor@novell.com>
* XmlDictionaryWriter.cs: Implement WriteValue(IStreamProvider).
2009-02-13 Jonathan Pryor <jpryor@novell.com>
* 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 <jpryor@novell.com>
* 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 <jpryor@novell.com>
* XmlDictionaryWriter.cs (WriteStartElement): Add parameter checking
and default arguments to avoid NullReferenceExceptions.
2009-02-11 Jonathan Pryor <jpryor@novell.com>
* XmlDictionaryString.cs: Add constructor argument checking.
2009-02-10 Jonathan Pryor <jpryor@novell.com>
* IFragmentCapableXmlDictionaryWriter.cs: Added.
2008-09-09 Atsushi Enomoto <atsushi@ximian.com>
Jb Evain <jbevain@novell.com>
* XmlBinaryDictionaryReader.cs, XmlSimpleDictionaryReader.cs:
add support to build on the net_2_1 profile.
2008-04-10 Eyal Alaluf <eyala@mainsoft.com>
* XmlBinaryDictionaryWriter.cs: WriteXmlnsAttribute generates a prefix
when given a null prefix.
2008-03-22 Atsushi Enomoto <atsushi@ximian.com>
* 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 <eyala@mainsoft.com>
* XmlBinaryDictionaryReader.cs: Handle compilation warnings.
* XmlSimpleDictionaryReader.cs: Added onClose handling.
* XmlDictionaryReader.cs: Simple implementation of CreateTextReader.
2008-02-08 Atsushi Enomoto <atsushi@ximian.com>
* 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 <atsushi@ximian.com>
* 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 <atsushi@ximian.com>
* XmlDictionaryWriter.cs : WriteNode() is override, not new.
2007-07-27 Atsushi Enomoto <atsushi@ximian.com>
* 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 <atsushi@ximian.com>
* XmlBinaryFormat.cs : added Base64Fixed (0xA0).
* XmlBinaryDictionaryReader.cs : support 0xA0 type above.
ReadInt() refactoring. Handle float and double value types.
2007-03-30 Atsushi Enomoto <atsushi@ximian.com>
* XmlBinaryDictionaryReader.cs :
implemented some ReadContentAs[Type]() methods.
* XmlDictionaryReader.cs :
Added Read[[Element]ContentAs]String() implementations.
* XmlDictionaryReaderAutoGen.cs : regenerated
2007-03-20 Atsushi Enomoto <atsushi@ximian.com>
* 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 <atsushi@ximian.com>
* XmlDictionaryReader.cs : more ongoing updates (valuetype support,
key support updates, ReadElementContentAsBase64).
2007-03-19 Atsushi Enomoto <atsushi@ximian.com>
* 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 <atsushi@ximian.com>
* XmlDictionaryReader.cs : fix infinite loop.
2007-03-16 Atsushi Enomoto <atsushi@ximian.com>
* XmlDictionaryReader.cs : added couple of missing methods.
2007-03-16 Atsushi Enomoto <atsushi@ximian.com>
* XmlDictionaryReaderAutoGen.cs : regenerated.
2007-03-16 Atsushi Enomoto <atsushi@ximian.com>
* XmlBinaryDictionaryReader.cs : ongoing updates to the 3.0 RTM
format.
2007-03-16 Atsushi Enomoto <atsushi@ximian.com>
* 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 <atsushi@ximian.com>
* XmlBinaryDictionaryWriter.cs : WriteValue(Decimal) is working now.
2007-03-15 Atsushi Enomoto <atsushi@ximian.com>
* XmlBinaryFormat.cs : new file, collection of constants.
* XmlBinaryDictionaryWriter.cs :
Stream->BinaryWriter. Support for WriteValue() for almost all
types.
2007-03-15 Atsushi Enomoto <atsushi@ximian.com>
* XmlDictionaryWriter.cs : removed couple of MonoTODOs.
2007-03-15 Atsushi Enomoto <atsushi@ximian.com>
* XmlBinaryDictionaryWriter.cs : more couple of fixes (typed value
support and fixes, more element/attribute namespace fixes etc.).
2007-03-15 Atsushi Enomoto <atsushi@ximian.com>
* 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 <atsushi@ximian.com>
* 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 <atsushi@ximian.com>
* XmlBinaryDictionaryWriter.cs : new prefix population is needed
in this class too.
2007-03-15 Atsushi Enomoto <atsushi@ximian.com>
* XmlBinaryDictionaryWriter.cs : more WriteEndAttribute() is needed.
Remove wrong namespaceUri index output. Fixed attribute operation.
2007-03-15 Atsushi Enomoto <atsushi@ximian.com>
* XmlBinaryDictionaryWriter.cs : output attribute value.
2007-03-15 Atsushi Enomoto <atsushi@ximian.com>
* 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 <atsushi@ximian.com>
* XmlBinaryDictionaryWriter.cs : couple of namespaces processing fix.
2007-03-15 Atsushi Enomoto <atsushi@ximian.com>
* 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 <atsushi@ximian.com>
* XmlBinaryWriterSession.cs : implemented.
* XmlBinaryDictionaryWriter.cs : a bunch of updates.
2007-03-14 Atsushi Enomoto <atsushi@ximian.com>
* 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 <atsushi@ximian.com>
* 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 <atsushi@ximian.com>
* XmlBinaryDictionaryReader.cs, XmlSimpleDictionaryReader.cs :
implement IXmlNamespaceResolver.
2006-07-31 Ankit Jain <jankit@novell.com>
* UniqueId.cs (.ctor): (string overload) Implement.
(ToString): Prepend "urn:uuid:" instead of "uuid-".
2006-07-31 Atsushi Enomoto <atsushi@ximian.com>
* UniqueId.cs : some implementation.
2006-07-04 Atsushi Enomoto <atsushi@ximian.com>
* XmlDictionaryWriter.cs, XmlSimpleDictionaryWriter.cs,
XmlDictionaryReaderQuotas.cs : June CTP API update.
2006-07-04 Atsushi Enomoto <atsushi@ximian.com>
* 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 <atsushi@ximian.com>
* XmlShimWriter.cs : deleted.
* XmlBinaryDictionaryWriter.cs, XmlSimpleDictionaryWriter.cs :
WriteProcessingInstruction() throws InvalidOperationException.
2005-11-28 Atsushi Enomoto <atsushi@ximian.com>
* XmlDictionaryReader.cs, XmlBinaryDictionaryWriter.cs,
XmlDictionary.cs, XmlDictionaryWriter.cs, XmlC14NWriter.cs :
several API fixes to Nov. CTP.
2005-11-03 Atsushi Enomoto <atsushi@ximian.com>
* XmlDictionaryReader.cs : CreateMtomReader() stubs.
2005-10-24 Atsushi Enomoto <atsushi@ximian.com>
* XmlBinaryDictionaryWriter.cs : use saved xml_lang and xml_space for
those corresponding properties (they bork at the declaring element).
2005-10-24 Atsushi Enomoto <atsushi@ximian.com>
* UniqueId.cs : it does not compile.
2005-10-23 Duncan Mak <duncan@novell.com>
* 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 <atsushi@ximian.com>
* XmlDictionary.cs : fixed type of Empty.
* XmlDictionaryReaderQuotas.cs : Default and Max were not readonly.
2005-10-05 Atsushi Enomoto <atsushi@ximian.com>
* XmlBinaryDictionaryReader.cs : and it can GetContext().
2005-10-05 Atsushi Enomoto <atsushi@ximian.com>
* 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 <atsushi@ximian.com>
* 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 <atsushi@ximian.com>
* 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 <atsushi@ximian.com>
* XmlBinaryDictionaryWriter.cs :
Added notes on dictionary string support inference. Fixed filename.
2005-10-04 Atsushi Enomoto <atsushi@ximian.com>
* XmlBinaryDictionaryWriter.cs : new file for CreateBinaryWriter().
* XmlDictionaryWriter.cs : use above.
2005-10-03 Atsushi Enomoto <atsushi@ximian.com>
* XmlDictionaryWriter.cs : stubby WriteNode() impl.
* XmlBinaryWriterSession.cs : tiny notes.
2005-10-03 Atsushi Enomoto <atsushi@ximian.com>
* XmlSimpleDictionaryWriter.cs : new file for CreateDictionaryWriter().
Implemented simple XmlWriter functionality.
* XmlDictionaryWriter.cs : use above.
2005-10-03 Atsushi Enomoto <atsushi@ximian.com>
* XmlDictionaryWriter.cs : implemented some members. Added more stubs.
2005-09-29 Duncan Mak <duncan@novell.com>
* XmlDictionaryWriter.cs (CreateBinaryWriter): Added stub.
2005-09-28 Duncan Mak <duncan@novell.com>
* XmlDictionaryWriter.cs (CreateDictionaryWriter): Added stub.
2005-09-27 Atsushi Enomoto <atsushi@ximian.com>
* 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 <atsushi@ximian.com>
* XmlDictionaryString.cs, XmlDictionary.cs,
XmlDictionaryReaderQuotas.cs, XmlDictionaryReader.cs:
added some implementations.
2005-09-22 Atsushi Enomoto <atsushi@ximian.com>
* 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 <atsushi@ximian.com>
* 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.
|