|
//------------------------------------------------------------------------------
// <copyright file="CatalogLocation.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
// <owner current="true" primary="true">markash</owner>
// <owner current="true" primary="false">laled</owner>
//------------------------------------------------------------------------------
namespace System.Data.Common {
using System;
public enum CatalogLocation { // V1.2.3300, MDAC 79449
Start = 1,
End = 2,
}
}
|