**** Merged from MCS ****
[mono-project.git] / mcs / class / System.Data.SqlXml / System.Data.SqlXml / DBObject.cs
blobfddf349e0904a3b25eb9d4dfd3daad24901acf2e
1 //
2 // System.Data.SqlXml.DBObject
3 //
4 // Author:
5 // Tim Coleman (tim@timcoleman.com)
6 //
7 // Copyright (C) Tim Coleman, 2003
8 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 //
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 //
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31 #if NET_2_0
33 using System.Data;
34 using System.IO;
35 using System.Xml.Query;
37 namespace System.Data.SqlXml {
38 public class DBObject
40 #region Constructors
42 [MonoTODO]
43 public DBObject ()
47 #endregion // Constructors
49 #region Properties
51 [MonoTODO]
52 public string Path {
53 get { throw new NotImplementedException(); }
54 set { throw new NotImplementedException(); }
57 #endregion // Properties
59 #region Methods
61 [MonoTODO]
62 public void Retrieve (Stream stream, IDbConnection connection)
64 throw new NotImplementedException ();
67 [MonoTODO]
68 public void Retrieve (Stream stream, XmlArgumentList argumentList, IDbConnection connection)
70 throw new NotImplementedException ();
73 [MonoTODO]
74 public IDataReader Retrieve (IDbConnection connection)
76 throw new NotImplementedException ();
79 [MonoTODO]
80 public IDataReader Retrieve (XmlArgumentList argumentList, IDbConnection connection)
82 throw new NotImplementedException ();
85 [MonoTODO]
86 public void Update (Stream insertStream, IDbConnection connection)
88 throw new NotImplementedException ();
91 [MonoTODO]
92 public void Update (Stream insertStream, XmlArgumentList argumentList, IDbConnection connection)
94 throw new NotImplementedException ();
97 [MonoTODO]
98 public void Update (byte[] inputBytes, IDbConnection connection)
100 throw new NotImplementedException ();
103 [MonoTODO]
104 public void Update (byte[] inputBytes, XmlArgumentList argumentList, IDbConnection connection)
106 throw new NotImplementedException ();
109 #endregion // Methods
113 #endif // NET_2_0