| File: OleDbPropertyStatus.cs | Web Access |
| Project: src\src\runtime\src\libraries\System.Data.OleDb\src\System.Data.OleDb.csproj (System.Data.OleDb) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace System.Data.OleDb { internal enum OleDbPropertyStatus { Ok = 0, NotSupported = 1, BadValue = 2, BadOption = 3, BadColumn = 4, NotAllSettable = 5, NotSettable = 6, NotSet = 7, Conflicting = 8, NotAvailable = 9, } } |