* FileSystemInfo.cs: corrected COM visibility of UTC properties
[mono.git] / mcs / class / System.Data.SqlXml / System.Xml / XmlAdapter.cs
1 //
2 // XmlAdapter.cs
3 //
4 // Author:
5 //      Atsushi Enomoto  <atsushi@ximian.com>
6 //
7 // (C)2003 Novell inc.
8 //
9 #if NET_1_2
10 using System;
11 using System.Collections;
12
13
14 namespace System.Xml
15 {
16         public class XmlAdapter
17         {
18                 public XmlAdapter ()
19                 {
20                         throw new NotImplementedException ();
21                 }
22
23                 public XmlAdapter (XmlResolver dataSource)
24                 {
25                         throw new NotImplementedException ();
26                 }
27
28                 public event UpdateEventHandler OnUpdateError;
29
30                 public void Fill (XPathDocument2 doc, XmlCommand query)
31                 {
32                         throw new NotImplementedException ();
33                 }
34
35                 public void Fill (XPathDocument2 doc, XmlCommand query, XmlQueryArgumentList argumentList)
36                 {
37                         throw new NotImplementedException ();
38                 }
39
40                 public void Update (IEnumerable changes, MappingSchema mappingSchema)
41                 {
42                         throw new NotImplementedException ();
43                 }
44
45                 public void Update (XPathChangeNavigator navigator, MappingSchema mappingSchema)
46                 {
47                         throw new NotImplementedException ();
48                 }
49
50                 public void Update (XPathDocument2 doc, MappingSchema mappingSchema)
51                 {
52                         throw new NotImplementedException ();
53                 }
54
55                 public bool AcceptChangesDuringFill {
56                         get { throw new NotImplementedException (); }
57                         set { throw new NotImplementedException (); }
58                 }
59
60                 public bool AcceptChangesDuringUpdate {
61                         get { throw new NotImplementedException (); }
62                         set { throw new NotImplementedException (); }
63                 }
64
65                 public bool ContinueUpdateOnError {
66                         get { throw new NotImplementedException (); }
67                         set { throw new NotImplementedException (); }
68                 }
69
70                 public XmlResolver DataSources {
71                         set { throw new NotImplementedException (); }
72                 }
73         }
74
75 }
76
77
78 #endif