Factor mono_get_exception_missing_field and mono_get_exception_missin… (#9282)
[mono-project.git] / mcs / class / System.Data / corefx / TdsEnums.cs
blobee58828fd0dc01995f6705d513787fea5a63840e
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,
34 public enum PoolBlockingPeriod
36 Auto,
37 AlwaysBlock,
38 NeverBlock