MappingSchema.cs 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  1. //
  2. // System.Data.Mapping.MappingSchema
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2003
  8. //
  9. //
  10. // Permission is hereby granted, free of charge, to any person obtaining
  11. // a copy of this software and associated documentation files (the
  12. // "Software"), to deal in the Software without restriction, including
  13. // without limitation the rights to use, copy, modify, merge, publish,
  14. // distribute, sublicense, and/or sell copies of the Software, and to
  15. // permit persons to whom the Software is furnished to do so, subject to
  16. // the following conditions:
  17. //
  18. // The above copyright notice and this permission notice shall be
  19. // included in all copies or substantial portions of the Software.
  20. //
  21. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  22. // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  23. // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  24. // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  25. // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  26. // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  27. // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  28. //
  29. #if NET_2_0
  30. using System.Data.SqlXml;
  31. using System.IO;
  32. using System.Xml;
  33. using System.Xml.Schema;
  34. namespace System.Data.Mapping {
  35. public class MappingSchema
  36. {
  37. #region Constructors
  38. [MonoTODO]
  39. public MappingSchema ()
  40. {
  41. }
  42. [MonoTODO]
  43. public MappingSchema (string url, ValidationEventHandler validationEventHandler)
  44. {
  45. }
  46. [MonoTODO]
  47. public MappingSchema (string url)
  48. {
  49. }
  50. [MonoTODO]
  51. public MappingSchema (XmlReader reader, ValidationEventHandler validationEventHandler)
  52. {
  53. }
  54. [MonoTODO]
  55. public MappingSchema (XmlReader reader)
  56. {
  57. }
  58. #endregion // Constructors
  59. #region Properties
  60. [MonoTODO]
  61. public DataSourceCollection DataSources {
  62. get { throw new NotImplementedException (); }
  63. }
  64. [MonoTODO]
  65. public MappingParameterCollection MappingParameters {
  66. get { throw new NotImplementedException (); }
  67. }
  68. [MonoTODO]
  69. public MapCollection Maps {
  70. get { throw new NotImplementedException (); }
  71. }
  72. [MonoTODO]
  73. public RelationshipMapCollection RelationshipMaps {
  74. get { throw new NotImplementedException (); }
  75. }
  76. [MonoTODO]
  77. public string SourceUri {
  78. get { throw new NotImplementedException (); }
  79. }
  80. #endregion // Properties
  81. #region Methods
  82. [MonoTODO]
  83. public Relationship Find (string fromVariableName, string toVariableName)
  84. {
  85. throw new NotImplementedException ();
  86. }
  87. [MonoTODO]
  88. public RelationshipCollection Find (string variableName)
  89. {
  90. throw new NotImplementedException ();
  91. }
  92. [MonoTODO]
  93. public string GetXml ()
  94. {
  95. throw new NotImplementedException ();
  96. }
  97. [MonoTODO]
  98. public void Read (string url, ValidationEventHandler validationEventHandler)
  99. {
  100. throw new NotImplementedException ();
  101. }
  102. [MonoTODO]
  103. public void Read (string url)
  104. {
  105. throw new NotImplementedException ();
  106. }
  107. [MonoTODO]
  108. public void Read (XmlReader reader, ValidationEventHandler validationEventHandler)
  109. {
  110. throw new NotImplementedException ();
  111. }
  112. [MonoTODO]
  113. public void Read (XmlReader reader)
  114. {
  115. throw new NotImplementedException ();
  116. }
  117. [MonoTODO]
  118. public void Write (string url, IXmlNamespaceResolver namespaceResolver)
  119. {
  120. throw new NotImplementedException ();
  121. }
  122. [MonoTODO]
  123. public void Write (string url)
  124. {
  125. throw new NotImplementedException ();
  126. }
  127. [MonoTODO]
  128. public void Write (XmlWriter writer, IXmlNamespaceResolver namespaceResolver)
  129. {
  130. throw new NotImplementedException ();
  131. }
  132. [MonoTODO]
  133. public void Write (XmlWriter writer)
  134. {
  135. throw new NotImplementedException ();
  136. }
  137. [MonoTODO]
  138. public void Write (Stream stream, IXmlNamespaceResolver namespaceResolver)
  139. {
  140. throw new NotImplementedException ();
  141. }
  142. [MonoTODO]
  143. public void Write (Stream stream)
  144. {
  145. throw new NotImplementedException ();
  146. }
  147. [MonoTODO]
  148. public void Write (TextWriter writer, IXmlNamespaceResolver namespaceResolver)
  149. {
  150. throw new NotImplementedException ();
  151. }
  152. [MonoTODO]
  153. public void Write (TextWriter writer)
  154. {
  155. throw new NotImplementedException ();
  156. }
  157. #endregion // Methods
  158. }
  159. }
  160. #endif // NET_2_0