MappingSchema.cs 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. //
  2. // System.Data.Mapping.MappingSchema
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2003
  8. //
  9. #if NET_1_2
  10. using System.Data.SqlXml;
  11. using System.IO;
  12. using System.Xml;
  13. using System.Xml.Schema;
  14. namespace System.Data.Mapping {
  15. public class MappingSchema
  16. {
  17. #region Constructors
  18. [MonoTODO]
  19. public MappingSchema ()
  20. {
  21. }
  22. [MonoTODO]
  23. public MappingSchema (string url, ValidationEventHandler validationEventHandler)
  24. {
  25. }
  26. [MonoTODO]
  27. public MappingSchema (string url)
  28. {
  29. }
  30. [MonoTODO]
  31. public MappingSchema (XmlReader reader, ValidationEventHandler validationEventHandler)
  32. {
  33. }
  34. [MonoTODO]
  35. public MappingSchema (XmlReader reader)
  36. {
  37. }
  38. #endregion // Constructors
  39. #region Properties
  40. [MonoTODO]
  41. public DataSourceCollection DataSources {
  42. get { throw new NotImplementedException (); }
  43. }
  44. [MonoTODO]
  45. public MappingParameterCollection MappingParameters {
  46. get { throw new NotImplementedException (); }
  47. }
  48. [MonoTODO]
  49. public MapCollection Maps {
  50. get { throw new NotImplementedException (); }
  51. }
  52. [MonoTODO]
  53. public RelationshipMapCollection RelationshipMaps {
  54. get { throw new NotImplementedException (); }
  55. }
  56. [MonoTODO]
  57. public string SourceUri {
  58. get { throw new NotImplementedException (); }
  59. }
  60. #endregion // Properties
  61. #region Methods
  62. [MonoTODO]
  63. public Relationship Find (string fromVariableName, string toVariableName)
  64. {
  65. throw new NotImplementedException ();
  66. }
  67. [MonoTODO]
  68. public RelationshipCollection Find (string variableName)
  69. {
  70. throw new NotImplementedException ();
  71. }
  72. [MonoTODO]
  73. public string GetXml ()
  74. {
  75. throw new NotImplementedException ();
  76. }
  77. [MonoTODO]
  78. public void Read (string url, ValidationEventHandler validationEventHandler)
  79. {
  80. throw new NotImplementedException ();
  81. }
  82. [MonoTODO]
  83. public void Read (string url)
  84. {
  85. throw new NotImplementedException ();
  86. }
  87. [MonoTODO]
  88. public void Read (XmlReader reader, ValidationEventHandler validationEventHandler)
  89. {
  90. throw new NotImplementedException ();
  91. }
  92. [MonoTODO]
  93. public void Read (XmlReader reader)
  94. {
  95. throw new NotImplementedException ();
  96. }
  97. [MonoTODO]
  98. public void Write (string url, IXmlNamespaceResolver namespaceResolver)
  99. {
  100. throw new NotImplementedException ();
  101. }
  102. [MonoTODO]
  103. public void Write (string url)
  104. {
  105. throw new NotImplementedException ();
  106. }
  107. [MonoTODO]
  108. public void Write (XmlWriter writer, IXmlNamespaceResolver namespaceResolver)
  109. {
  110. throw new NotImplementedException ();
  111. }
  112. [MonoTODO]
  113. public void Write (XmlWriter writer)
  114. {
  115. throw new NotImplementedException ();
  116. }
  117. [MonoTODO]
  118. public void Write (Stream stream, IXmlNamespaceResolver namespaceResolver)
  119. {
  120. throw new NotImplementedException ();
  121. }
  122. [MonoTODO]
  123. public void Write (Stream stream)
  124. {
  125. throw new NotImplementedException ();
  126. }
  127. [MonoTODO]
  128. public void Write (TextWriter writer, IXmlNamespaceResolver namespaceResolver)
  129. {
  130. throw new NotImplementedException ();
  131. }
  132. [MonoTODO]
  133. public void Write (TextWriter writer)
  134. {
  135. throw new NotImplementedException ();
  136. }
  137. #endregion // Methods
  138. }
  139. }
  140. #endif // NET_1_2