* FileSystemInfo.cs: corrected COM visibility of UTC properties
[mono.git] / mcs / class / System.Data.SqlXml / System.Data.Mapping / IDomainStructure.cs
1 //\r
2 // System.Data.Mapping.IDomainStructure\r
3 //\r
4 // Author:\r
5 //   Tim Coleman (tim@timcoleman.com)\r
6 //\r
7 // Copyright (C) Tim Coleman, 2003\r
8 //\r
9 \r
10 #if NET_1_2\r
11 \r
12 using System.Xml;\r
13 \r
14 namespace System.Data.Mapping {\r
15         public interface IDomainStructure\r
16         {\r
17                 #region Properties\r
18 \r
19                 IDomainSchema DomainSchema { get; }\r
20                 string Select { get; }\r
21 \r
22                 #endregion // Properties\r
23 \r
24                 #region Methods\r
25 \r
26                 IDomainField GetDomainField (string fieldName, IXmlNamespaceResolver namespaces);\r
27 \r
28                 #endregion // Methods\r
29         }\r
30 }\r
31 \r
32 #endif // NET_1_2\r