//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // // adoprov //------------------------------------------------------------------------------ namespace System.Data.SqlClient { /// /// represents the application workload type when connecting to a server /// [Serializable] public enum ApplicationIntent { ReadWrite = 0, ReadOnly = 1, } }