SqlQueryPlan.cs 300 B

123456789101112131415161718192021
  1. //
  2. // System.Xml.Query.SqlQueryPlan
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2003
  8. //
  9. #if NET_1_2
  10. namespace System.Xml.Query {
  11. public enum SqlQueryPlan
  12. {
  13. Serialized,
  14. Mars,
  15. UnionAll
  16. }
  17. }
  18. #endif // NET_1_2