| 1234567891011121314151617181920212223242526272829303132 |
- //
- // System.Data.Mapping.IDomainStructure
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2003
- //
- #if NET_1_2
- using System.Xml;
- namespace System.Data.Mapping {
- public interface IDomainStructure
- {
- #region Properties
- IDomainSchema DomainSchema { get; }
- string Select { get; }
- #endregion // Properties
- #region Methods
- IDomainField GetDomainField (string fieldName, IXmlNamespaceResolver namespaces);
- #endregion // Methods
- }
- }
- #endif // NET_1_2
|