[System.Data] move to corefx (#4893)
[mono-project.git] / mcs / class / System.Data / corefx / TdsEnums.cs
blobddc362f7ce4c3e5f7e20263d446b64d908cd64fb
1 // Licensed to the .NET Foundation under one or more agreements.
2 // The .NET Foundation licenses this file to you under the MIT license.
3 // See the LICENSE file in the project root for more information.
5 using System.Collections.Generic;
6 using System.Data.Common;
7 using System.Diagnostics;
8 using System.Threading;
10 namespace System.Data.SqlClient
12 public enum SqlConnectionColumnEncryptionSetting
14 Disabled = 0,
15 Enabled,
18 public enum SqlAuthenticationMethod
20 NotSpecified = 0,
21 SqlPassword,
22 ActiveDirectoryPassword,
23 ActiveDirectoryIntegrated,
26 public enum SqlCommandColumnEncryptionSetting
28 UseConnectionSetting = 0,
29 Enabled,
30 ResultSetOnly,
31 Disabled,