IDomainStructure.cs 558 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // System.Data.Mapping.IDomainStructure
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2003
  8. //
  9. #if NET_1_2
  10. using System.Xml;
  11. namespace System.Data.Mapping {
  12. public interface IDomainStructure
  13. {
  14. #region Properties
  15. IDomainSchema DomainSchema { get; }
  16. string Select { get; }
  17. #endregion // Properties
  18. #region Methods
  19. IDomainField GetDomainField (string fieldName, IXmlNamespaceResolver namespaces);
  20. #endregion // Methods
  21. }
  22. }
  23. #endif // NET_1_2