XmlViewSchema.cs 630 B

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // System.Xml.Query.XmlViewSchema
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2003
  8. //
  9. #if NET_1_2
  10. using System.Collections;
  11. using System.Data.SqlXml;
  12. using System.Xml.Schema;
  13. namespace System.Xml.Query {
  14. public abstract class XmlViewSchema
  15. {
  16. #region Properties
  17. [MonoTODO]
  18. public XmlSchema ResultsSchema {
  19. get { throw new NotImplementedException (); }
  20. }
  21. [MonoTODO]
  22. public IEnumerator SourceDataNames {
  23. get { throw new NotImplementedException (); }
  24. }
  25. #endregion // Properties
  26. }
  27. }
  28. #endif // NET_1_2