| 123456789101112131415161718192021 |
- //------------------------------------------------------------------------------
- // <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,
- }
- }
|