(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / class / System.Data.SqlXml / System.Data.Mapping / MappingSchema.cs
blob6b5520e8de18566507bc1811480809b2b6659f1f
1 //
2 // System.Data.Mapping.MappingSchema
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.SqlXml;
34 using System.IO;
35 using System.Xml;
36 using System.Xml.Schema;
38 namespace System.Data.Mapping {
39 public class MappingSchema
41 #region Constructors
43 [MonoTODO]
44 public MappingSchema ()
48 [MonoTODO]
49 public MappingSchema (string url, ValidationEventHandler validationEventHandler)
53 [MonoTODO]
54 public MappingSchema (string url)
58 [MonoTODO]
59 public MappingSchema (XmlReader reader, ValidationEventHandler validationEventHandler)
63 [MonoTODO]
64 public MappingSchema (XmlReader reader)
68 #endregion // Constructors
70 #region Properties
72 [MonoTODO]
73 public DataSourceCollection DataSources {
74 get { throw new NotImplementedException (); }
77 [MonoTODO]
78 public MappingParameterCollection MappingParameters {
79 get { throw new NotImplementedException (); }
82 [MonoTODO]
83 public MapCollection Maps {
84 get { throw new NotImplementedException (); }
87 [MonoTODO]
88 public RelationshipMapCollection RelationshipMaps {
89 get { throw new NotImplementedException (); }
92 [MonoTODO]
93 public string SourceUri {
94 get { throw new NotImplementedException (); }
97 #endregion // Properties
99 #region Methods
101 [MonoTODO]
102 public Relationship Find (string fromVariableName, string toVariableName)
104 throw new NotImplementedException ();
107 [MonoTODO]
108 public RelationshipCollection Find (string variableName)
110 throw new NotImplementedException ();
113 [MonoTODO]
114 public string GetXml ()
116 throw new NotImplementedException ();
119 [MonoTODO]
120 public void Read (string url, ValidationEventHandler validationEventHandler)
122 throw new NotImplementedException ();
125 [MonoTODO]
126 public void Read (string url)
128 throw new NotImplementedException ();
131 [MonoTODO]
132 public void Read (XmlReader reader, ValidationEventHandler validationEventHandler)
134 throw new NotImplementedException ();
137 [MonoTODO]
138 public void Read (XmlReader reader)
140 throw new NotImplementedException ();
143 [MonoTODO]
144 public void Write (string url, IXmlNamespaceResolver namespaceResolver)
146 throw new NotImplementedException ();
149 [MonoTODO]
150 public void Write (string url)
152 throw new NotImplementedException ();
155 [MonoTODO]
156 public void Write (XmlWriter writer, IXmlNamespaceResolver namespaceResolver)
158 throw new NotImplementedException ();
161 [MonoTODO]
162 public void Write (XmlWriter writer)
164 throw new NotImplementedException ();
167 [MonoTODO]
168 public void Write (Stream stream, IXmlNamespaceResolver namespaceResolver)
170 throw new NotImplementedException ();
173 [MonoTODO]
174 public void Write (Stream stream)
176 throw new NotImplementedException ();
179 [MonoTODO]
180 public void Write (TextWriter writer, IXmlNamespaceResolver namespaceResolver)
182 throw new NotImplementedException ();
185 [MonoTODO]
186 public void Write (TextWriter writer)
188 throw new NotImplementedException ();
191 #endregion // Methods
195 #endif // NET_2_0