File: fx\src\data\System\Data\Common\identifiercase.cs
Project: ndp\System.Data.csproj (System.Data)
//------------------------------------------------------------------------------
// <copyright file="identifiercase.cs" company="Microsoft">
//      Copyright (c) Microsoft Corporation.  All rights reserved.
// </copyright>
// <owner current="true" primary="true">rickfe</owner>
// <owner current="true" primary="false">stevesta</owner>
//------------------------------------------------------------------------------
 
namespace System.Data.Common {
 
    public enum IdentifierCase { 
        Unknown = 0,
        Insensitive = 1,
        Sensitive = 2       
    }
}