File: fx\src\data\System\Data\UpdateRowSource.cs
Project: ndp\System.Data.csproj (System.Data)
//------------------------------------------------------------------------------
// <copyright file="UpdateRowSource.cs" company="Microsoft">
//      Copyright (c) Microsoft Corporation.  All rights reserved.
// </copyright>
// <owner current="true" primary="true">markash</owner>
// <owner current="true" primary="false">laled</owner>
//------------------------------------------------------------------------------
 
namespace System.Data {
 
    public enum UpdateRowSource {
 
        None = 0,
 
        OutputParameters = 1,
 
        FirstReturnedRecord = 2,
 
        Both = 3,
    }
}