ApplicationIntent.cs 633 B

123456789101112131415161718
  1. //------------------------------------------------------------------------------
  2. // <copyright file="ApplicationIntent.cs" company="Microsoft">
  3. // Copyright (c) Microsoft Corporation. All rights reserved.
  4. // </copyright>
  5. // <owner current="true" primary="true">adoprov</owner>
  6. //------------------------------------------------------------------------------
  7. namespace System.Data.SqlClient {
  8. /// <summary>
  9. /// represents the application workload type when connecting to a server
  10. /// </summary>
  11. [Serializable]
  12. public enum ApplicationIntent {
  13. ReadWrite = 0,
  14. ReadOnly = 1,
  15. }
  16. }