CatalogLocation.cs 572 B

1234567891011121314151617
  1. //------------------------------------------------------------------------------
  2. // <copyright file="CatalogLocation.cs" company="Microsoft">
  3. // Copyright (c) Microsoft Corporation. All rights reserved.
  4. // </copyright>
  5. // <owner current="true" primary="true">markash</owner>
  6. // <owner current="true" primary="false">laled</owner>
  7. //------------------------------------------------------------------------------
  8. namespace System.Data.Common {
  9. using System;
  10. public enum CatalogLocation { // V1.2.3300, MDAC 79449
  11. Start = 1,
  12. End = 2,
  13. }
  14. }