ChangeLog 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. 2004-04-13 Atsushi Enomoto <[email protected]>
  2. * XmlDataDocument.cs:
  3. Load() should not read xml multiple time nor expect BaseURI (and it
  4. indicates the resource location is readable).
  5. Simplified event handling logic, and fixed missing event removal.
  6. Quick hack to avoid new XmlDataDocument(DataSet ds).Load ().
  7. Enabled CreateNavigator() that was commented out.
  8. 2004-03-18 Atsushi Enomoto <[email protected]>
  9. * XmlDataDocument.cs : Fixed incorrect cast in OnDataTableRowAdded().
  10. This fixes bug #54505.
  11. 2003-07-31 Duncan Mak <[email protected]>
  12. * XmlDataDocument.cs (BaseURI):
  13. (InnerXml):
  14. (IsReadOnly):
  15. (this):
  16. (LocalName):
  17. (Name):
  18. (OwnerDocument):
  19. (WriteContentTo):
  20. (WriteTo): Removed, these do not need to be redefined, as
  21. they are inherited from XmlDocument already.
  22. (CreateElement): simplifed the
  23. implementation. XmlDocument.CreateElement can handle String.Empty
  24. and null just fine.
  25. 2003-03-12 Alan Tam <[email protected]>
  26. * XmlDataDocument.cs: Still need to print tag for the DataSet if there
  27. is no data at all.
  28. 2003-01-27 Ville Palo <[email protected]>
  29. * ChangeLog: Added this file.
  30. * XmlDataDocument.cs: Some little fixes.