| 123456789101112131415161718192021 |
- //
- // System.Xml.Query.SqlQueryPlan
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2003
- //
- #if NET_1_2
- namespace System.Xml.Query {
- public enum SqlQueryPlan
- {
- Serialized,
- Mars,
- UnionAll
- }
- }
- #endif // NET_1_2
|