| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- //
- // XmlAdapter.cs
- //
- // Author:
- // Atsushi Enomoto <[email protected]>
- //
- // (C)2003 Novell inc.
- //
- #if NET_1_2
- using System;
- using System.Collections;
- namespace System.Xml
- {
- public class XmlAdapter
- {
- public XmlAdapter ()
- {
- throw new NotImplementedException ();
- }
- public XmlAdapter (XmlResolver dataSource)
- {
- throw new NotImplementedException ();
- }
- public event UpdateEventHandler OnUpdateError;
- public void Fill (XPathDocument2 doc, XmlCommand query)
- {
- throw new NotImplementedException ();
- }
- public void Fill (XPathDocument2 doc, XmlCommand query, XmlQueryArgumentList argumentList)
- {
- throw new NotImplementedException ();
- }
- public void Update (IEnumerable changes, MappingSchema mappingSchema)
- {
- throw new NotImplementedException ();
- }
- public void Update (XPathChangeNavigator navigator, MappingSchema mappingSchema)
- {
- throw new NotImplementedException ();
- }
- public void Update (XPathDocument2 doc, MappingSchema mappingSchema)
- {
- throw new NotImplementedException ();
- }
- public bool AcceptChangesDuringFill {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
- public bool AcceptChangesDuringUpdate {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
- public bool ContinueUpdateOnError {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
- public XmlResolver DataSources {
- set { throw new NotImplementedException (); }
- }
- }
- }
- #endif
|