2003-03-27 Ville Palo <vi64pa@kolumbus.fi>
[mono.git] / mcs / class / System.Data / System.Data / UpdateStatus.cs
1 //
2 // System.Data.UpdateStatus.cs
3 //
4 // Author:
5 //   Christopher Podurgiel (cpodurgiel@msn.com)
6 //
7 // (C) Chris Podurgiel
8 //
9
10 using System;
11
12 namespace System.Data
13 {
14         /// <summary>
15         /// Specifies the action to take with regard to the current and remaining rows during an Update.
16         /// </summary>
17         [Serializable]
18         public enum UpdateStatus
19         {
20                 Continue = 0,
21                 ErrorsOccurred = 1,
22                 SkipCurrentRow = 2,
23                 SkipAllRemainingRows = 3
24         }
25 }