XmlAdapter.cs 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. //
  2. // XmlAdapter.cs
  3. //
  4. // Author:
  5. // Atsushi Enomoto <[email protected]>
  6. //
  7. // (C)2003 Novell inc.
  8. //
  9. #if NET_1_2
  10. using System;
  11. using System.Collections;
  12. namespace System.Xml
  13. {
  14. public class XmlAdapter
  15. {
  16. public XmlAdapter ()
  17. {
  18. throw new NotImplementedException ();
  19. }
  20. public XmlAdapter (XmlResolver dataSource)
  21. {
  22. throw new NotImplementedException ();
  23. }
  24. public event UpdateEventHandler OnUpdateError;
  25. public void Fill (XPathDocument2 doc, XmlCommand query)
  26. {
  27. throw new NotImplementedException ();
  28. }
  29. public void Fill (XPathDocument2 doc, XmlCommand query, XmlQueryArgumentList argumentList)
  30. {
  31. throw new NotImplementedException ();
  32. }
  33. public void Update (IEnumerable changes, MappingSchema mappingSchema)
  34. {
  35. throw new NotImplementedException ();
  36. }
  37. public void Update (XPathChangeNavigator navigator, MappingSchema mappingSchema)
  38. {
  39. throw new NotImplementedException ();
  40. }
  41. public void Update (XPathDocument2 doc, MappingSchema mappingSchema)
  42. {
  43. throw new NotImplementedException ();
  44. }
  45. public bool AcceptChangesDuringFill {
  46. get { throw new NotImplementedException (); }
  47. set { throw new NotImplementedException (); }
  48. }
  49. public bool AcceptChangesDuringUpdate {
  50. get { throw new NotImplementedException (); }
  51. set { throw new NotImplementedException (); }
  52. }
  53. public bool ContinueUpdateOnError {
  54. get { throw new NotImplementedException (); }
  55. set { throw new NotImplementedException (); }
  56. }
  57. public XmlResolver DataSources {
  58. set { throw new NotImplementedException (); }
  59. }
  60. }
  61. }
  62. #endif