[bcl] Updates referencesource to 4.7.1
[mono-project.git] / mcs / class / referencesource / System.Data / System / Data / DataRowAction.cs
blob516ce4fcb16f0a6a588f5eab7fb0c1fe4544baa8
1 //------------------------------------------------------------------------------
2 // <copyright file="DataRowAction.cs" company="Microsoft">
3 // Copyright (c) Microsoft Corporation. All rights reserved.
4 // </copyright>
5 // <owner current="true" primary="true">amirhmy</owner>
6 // <owner current="true" primary="false">markash</owner>
7 // <owner current="false" primary="false">jasonzhu</owner>
8 //------------------------------------------------------------------------------
10 namespace System.Data {
12 [Flags]
13 public enum DataRowAction {
14 Nothing = 0, // 0 0x00
15 Delete = (1 << 0), // 1 0x01
16 Change = (1 << 1), // 2 0x02
17 Rollback = (1 << 2), // 4 0x04
18 Commit = (1 << 3), // 8 0x08
19 Add = (1 << 4), // 16 0x10
20 ChangeOriginal = (1 << 5), // 32 0x20
21 ChangeCurrentAndOriginal = (1 << 6), // 64 0x40